-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
37 lines (37 loc) · 985 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
31
32
33
34
35
36
37
{
"name": "v8-perf",
"version": "0.0.0",
"description": "Notes and resources related to v8 and thus Node.js performance.",
"scripts": {
"test-main": "set -e; for t in test/*.js; do $t; done",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-0.11": "nave use 0.11 npm run test-main",
"test": "npm run test-0.8 && npm run test-0.10 && npm run test-0.11"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/v8-perf.git"
},
"homepage": "https://github.com/thlorenz/v8-perf",
"dependencies": {
"ansicolors": "~0.3.2"
},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.9"
},
"keywords": [],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/v8-perf/blob/master/LICENSE"
},
"engine": {
"node": ">=0.8"
}
}