-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
68
69
70
71
72
73
74
{
"name": "ccms-sms-editor",
"version": "0.0.18",
"description": "shuyun ccms sms editor",
"keywords": [
"angular",
"es6",
"sms-editor"
],
"main": "index.js",
"scripts": {
"release": "npm run patch && npm run build && npm publish dist",
"test-release": "npm run test-patch && npm run build && npm publish dist",
"build": "webpack --config webpack-build.config.js && cp package.json ./dist/package.json && cp index.js ./dist/index.js",
"start": "node server.js",
"patch": "bump --patch --commit --push",
"test-patch": "bump --prepatch --commit --push",
"debug": "node --inspect --inspect-brk ./node_modules/webpack/bin/webpack.js",
"build:debug": "npm run debug -- --config webpack-build.config.js",
"start:debug": "npm run debug -- server.js",
"check-types": "tsc"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/webpack-env": "^1.13.6",
"autoprefixer": "^6.3.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"eslint": "^5.12.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.1",
"express": "^4.13.3",
"html-loader": "^0.5.5",
"json-mock-kuitos": "^1.1.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"typescript": "^3.2.4",
"uglifyjs-webpack-plugin": "^2.1.1",
"version-bump-prompt": "^4.2.2",
"webpack": "^4.0.0",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
},
"peerDependencies": {
"angular": "1.5.8",
"angular-sanitize": "1.5.8"
},
"dependencies": {
"@types/angular": "1.5.8",
"@types/angular-sanitize": "^1.3.7",
"@types/dom-helpers": "^3.4.0",
"angular": "1.5.8",
"angular-sanitize": "1.5.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}