-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.75 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "v8-flags",
"version": "0.1.2",
"description": "Configures v8 flags at runtime.",
"main": "index.js",
"scripts": {
"preinstall": "node ./scripts/preinstall",
"install": "node-gyp rebuild",
"build": "node-gyp build",
"gyp-remove": "node-gyp remove `node -e 'console.log(process.version)'`",
"test-main": "sh test.sh `node --version`",
"test-0.8": "sh test.sh 0.8",
"test-0.10": "sh test.sh 0.10",
"test-0.11": "sh test.sh 0.11",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10 && npm run test-0.11",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi",
"flag-doc-0.8": "nave use 0.8 npm install && nave use 0.8 node ./scripts/gen-flag-doc > flags-0.8.md",
"flag-doc-0.10": "nave use 0.10 npm install && nave use 0.10 node ./scripts/gen-flag-doc > flags-0.10.md",
"flag-doc-0.11": "nave use 0.11 npm install && nave use 0.11 node ./scripts/gen-flag-doc > flags-0.11.md",
"flag-doc": "npm run flag-doc-0.8 && npm run flag-doc-0.10 && npm run flag-doc-0.11",
"docme": "docme README.md -- --configure .jsdocrc"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/v8-flags.git"
},
"homepage": "https://github.com/thlorenz/v8-flags",
"dependencies": {
"nan": "~1.2.0"
},
"devDependencies": {
"doctoc": "~0.7.1",
"nave": "~0.4.3",
"semver": "~2.3.1",
"tap": "~0.4.11"
},
"keywords": [
"v8",
"flags",
"configure",
"tune"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/v8-flags/blob/master/LICENSE"
},
"engine": {
"node": ">=0.8"
}
}