-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 879 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "random-graph",
"version": "0.0.3",
"description": "generate random graphs",
"main": "lib/index.js",
"scripts": {
"publish-all": "npm run push-all && npm publish && npm run sync-cnpm",
"push-all": "npm run push-master && npm run push-tags",
"push-master": "git checkout master && git push",
"push-tags": "git push --tag",
"sync-cnpm": "cnpm sync $npm_package_name",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leungwensen/random-graph.git"
},
"keywords": [
"random-graph"
],
"author": "leungwensen@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/leungwensen/random-graph/issues"
},
"homepage": "https://github.com/leungwensen/random-graph#readme",
"devDependencies": {
"browserify": "^14.1.0"
}
}