-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.5 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "network-heart-service",
"version": "0.1.2",
"description": "A Service to handle netowrk change.",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-browser && npm run build-node",
"build-browser": "webpack --config ./build/webpack.browser.config.js",
"build-node": "babel src -d lib --copy-files",
"dev": "webpack-dev-server --config ./build/webpack.dev.config.js",
"test": "karma start ./test/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JackPu/network-heart-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JackPu/network-heart-service/issues"
},
"homepage": "https://github.com/JackPu/network-heart-service#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11"
}
}