-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "@kickoff/react-components",
"version": "1.0.6",
"description": "React components for easy use of the Kickoff framework",
"main": "dist/cjs",
"module": "dist/esm",
"browser": "dist/umd",
"dependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.5",
"fs-extra": "^4.0.2",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "^1.7.3",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-gzip": "^1.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.3"
},
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=development rollup -c && cross-env NODE_ENV=production rollup -c",
"watch": "rimraf dist && cross-env NODE_ENV=development rollup -c -w",
"lint": "prettier --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TryKickoff/react-components.git"
},
"keywords": [
"⚽",
"kickoff",
"react"
],
"author": "JP Driver",
"license": "MIT",
"bugs": {
"url": "https://github.com/TryKickoff/react-components/issues"
},
"homepage": "https://github.com/TryKickoff/react-components#readme",
"files": [
"dist"
],
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"git add"
]
}
}