-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 976 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": "a-huge-date",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build; npm run serve",
"serve": "cd public; python -m SimpleHTTPServer",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"test": "karma start karma.conf.js",
"dev": "concurrently --names \"HTTP,WATCH\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm start\" \"npm run build:watch\" \"npm run test\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.4.0",
"css-loader": "^0.28.2",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.5",
"to-string-loader": "^1.1.5",
"webpack": "^2.6.0"
}
}