-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "weblog",
"version": "1.0.1",
"description": "web log",
"main": "dist/weblog.js",
"scripts": {
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:pro": "cross-env NODE_ENV=production rollup -c",
"start:dev": "cross-env NODE_ENV=development rollup -c -w",
"start:pro": "cross-env NODE_ENV=production rollup -c -w",
"lint": "eslint src --ext .ts"
},
"author": "Black-Hole <158blackhole@gmail.com> (http://bugs.cc/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.1",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-typescript": "^0.12.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify-es": "0.0.1",
"typescript": "^3.0.3",
"typescript-eslint-parser": "^18.0.0"
},
"dependencies": {
"es6-promise": "^4.2.5",
"flat": "^4.1.0",
"ua-parser-js": "^0.7.18"
}
}