-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jeasy",
"version": "0.0.16",
"description": "javascript easy tool",
"main": "index.js",
"scripts": {
"report-coverage": "codecov",
"start": "node server",
"lint": "eslint src/js/",
"test": "NODE_ENV=test karma start",
"test:win": "cross-env NODE_ENV=test karma start",
"build": "webpack --config webpack-config.js",
"preversion": "npm test",
"version": "npm run build && npm publish dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baukh789/jeasy"
},
"author": "baukh",
"license": "MIT",
"homepage": "https://github.com/baukh789/jeasy",
"bugs": {
"url": "https://github.com/baukh789/jeasy/issues"
},
"keywords": [
"js tool",
"js utils"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.1.6",
"@babel/runtime": "^7.4.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"browserslist": "^4.4.1",
"codecov": "^1.0.1",
"copy-webpack-plugin": "^4.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^2.1.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^2.1.2",
"jasmine-core": "^2.6.4",
"karma": "^4.0.0",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-jasmine-ajax": "^0.1.13",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1"
}
}