-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 919 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
{
"name": "wolfplayer",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/diegosperes/wolfplayer.git",
"author": "Diego Péres",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"jasmine": "^2.7.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^2.0.4",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
},
"scripts": {
"server": "webpack-dev-server --host 0.0.0.0 --content-base public/ --output-public-path latest/",
"test": "./node_modules/karma/bin/karma start --single-run",
"watch": "./node_modules/karma/bin/karma start"
}
}