-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.65 KB
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
{
"name": "easy-spinners",
"version": "1.0.0",
"description": "spinners for React that are Css-only",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"sideEffects" : false,
"scripts": {
"lint": "eslint '**/*.js'",
"format": "prettier-eslint $PWD/'**/*.js' --write",
"prebuild": "rimraf dist",
"build": "rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/larbibaraka/easy-spinners.git"
},
"keywords": [
"react",
"css",
"spinners"
],
"author": "Baraka Larbi",
"license": "MIT",
"bugs": {
"url": "https://github.com/larbibaraka/easy-spinners/issues"
},
"homepage": "https://github.com/larbibaraka/easy-spinners#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.7.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.3.0"
},
"peerDependencies": {
"react": ">=15"
},
"engines": {
"node": ">=8"
}
}