-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "reactflipclock-js",
"version": "1.0.2",
"description": "",
"main": "dist/bundle.js",
"module": "dist/bundle.js",
"dependencies": {
"flipclock": "^0.10.0",
"husky": "^1.2.1",
"jquery": "^3.3.1",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"react": "^16.6.3",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^4.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:esm": "rollup -c",
"prettier": "prettier --write 'src/**/*.{js,css}'",
"prettier:check": "prettier --list-different 'src/**/*.{js,css}'",
"prettier-changefiles": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn run prettier-changefiles"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elecweb/ReactFlipClock.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elecweb/ReactFlipClock/issues"
},
"homepage": "https://github.com/Elecweb/ReactFlipClock#readme",
"peerDependencies": {
"flipclock": "^0.10.0",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}