-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 996 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 996 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
31
32
33
34
{
"name": "input-manager",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git@github.com:schneiderik/input-manager.git"
},
"scripts": {
"start": "node app.js & npm run watch",
"prestart": "npm run build",
"build": "browserify $npm_package_main -t babelify -o ./dist/input-manager.js -s InputManager",
"watch": "nodemon -e js -w lib -w main.js -x npm run build",
"test": "karma start test/unit/config/karma.js --single-run"
},
"main": "./main.js",
"devDependencies": {
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"chai": "^2.0.0",
"chai-as-promised": "^4.1.1",
"karma": "0.12.37",
"karma-browserify": "4.3.0",
"karma-chai-sinon": "0.1.5",
"karma-es5-shim": "0.0.4",
"karma-mocha": "0.1.10",
"karma-mocha-reporter": "1.1.1",
"karma-phantomjs-launcher": "^0.2.0",
"mocha": "2.2.5",
"nodemon": "^1.8.1",
"phantomjs": "~1.9.7-12",
"sinon": "1.16.1",
"sinon-chai": "2.8.0"
}
}