-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "@autofe/layer",
"version": "0.3.1",
"description": "A Layer library based on jQuery",
"keywords": [
"library",
"autohome",
"layer"
],
"main": "dist/layer.js",
"module": "src/index.js",
"scripts": {
"build": "npm run lint && rollup -c ./rollup.config.js",
"release": "npm run build && npm run minify",
"minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --output dist/layer.min.js dist/layer.js",
"lint": "eslint lib test",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "jpuncle <zhangxingkai@autohome.com.cn>",
"repository": {
"type": "git",
"url": "git+https://github.com/athm-fe/layer.git"
},
"license": "MIT",
"files": [
"lib",
"dist"
],
"dependencies": {
"jquery": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-autofe-app": "^1.2.0",
"eslint": "^4.15.0",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"uglify-js": "^3.3.7"
}
}