-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "TagCloud",
"version": "2.5.0",
"description": "3D TagCloud",
"main": "dist/TagCloud.js",
"types": "dist/TagCloud.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"start": "npm run dev",
"dev": "rollup -c -w",
"build": "rollup -c",
"lint": "eslint --fix \"**/*.js\"",
"outdated": "npm outdated"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cong-min/TagCloud.git"
},
"author": "Cong Min",
"license": "MIT",
"bugs": {
"url": "https://github.com/cong-min/TagCloud/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-soda-works": "^1.1.0",
"husky": "^3.0.4",
"lint-staged": "^8.2.1",
"lodash": "^4.17.15",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}