-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1006 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
{
"name": "emscripten-constraints",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"browserify": "11.0.0",
"cassowary": "0.0.2",
"requirejs": "^2.1.19"
},
"devDependencies": {
"karma": "^0.13.1",
"karma-chrome-launcher": "^0.1.10",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"mocha": "^2.2.5"
},
"engines": {
"node": ">= 0.8.x"
},
"repository": {
"type": "git",
"url": "git://github.com/normanrz/emscripten-constraints.git"
},
"scripts": {
"postinstall": "./node_modules/.bin/browserify tests/tests.js -o tests/tests.bundle.js && ./node_modules/.bin/browserify benchs/benchs.js -o benchs/benchs.bundle.js",
"test": "./node_modules/karma/bin/karma start karma_tests.conf.js --single-run",
"test-watch": "./node_modules/karma/bin/karma start karma_tests.conf.js",
"test-mocha": "mocha tests/test.*.js",
"benchmark": "./node_modules/karma/bin/karma start karma_benchs.conf.js --single-run"
}
}