-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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": "benchmark-framework",
"version": "0.0.1",
"description": "Quick framework over Benchmark.js for when JSPerf is down",
"main": "src/main.js",
"scripts": {
"test": "echo \"Automatic tests not set up yet. Please run test/test_perf.html in the browser.",
"start": "$(npm bin)/webpack --watch",
"build": "$(npm bin)/webpack",
"build-min": "NODE_ENV=production $(npm bin)/webpack",
"build-all": "npm run build && npm run build-min"
},
"keywords": [
"benchmark",
"perf",
"jsperf"
],
"author": "Joe Nudell",
"license": "MIT",
"dependencies": {
"benchmark": "^1.0.0"
},
"devDependencies": {
"babel-core": "^5.7.2",
"babel-loader": "^5.3.2",
"eslint": "^1.0.0-rc-1",
"node-libs-browser": "^0.5.2",
"webpack": "^1.10.1"
}
}