-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-hatch",
"version": "0.1.13",
"description": "React overlay component for transitions and lock screens.",
"main": "lib/index.js",
"files": [
"lib",
"doc"
],
"scripts": {
"clean": "rimraf lib && rimraf webpack && rimraf webpack.config.js && rimraf config.js",
"build-deps": "babel src/webpack -d webpack && babel src/webpack.config.js -o webpack.config.js && babel src/config.js -o config.js",
"prebuild": "npm-run-all clean build-deps",
"build": "webpack --config webpack.config.js --progress --profile --colors",
"prestart": "npm-run-all clean build-deps",
"start": "webpack --config webpack.config.js --progress --profile --colors --watch",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json",
"postdoc": "ncp CNAME doc/CNAME",
"prerelease": "npm run build",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-doc",
"prerelease-doc": "npm run doc",
"release-doc": "git subtree push --prefix doc origin gh-pages",
"postrelease-doc": "git commit -am \"doc-release\" && git push --follow-tags",
"upgrade": "ncu -a && npm update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cchamberlain/react-hatch.git"
},
"keywords": [
"react",
"lock",
"lockscreen",
"transition",
"animation"
],
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"browser-detective": "*",
"bunyan": "^1.8.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"npm-run-all": "^1.8.0",
"redux-devtools-themes": "^1.0.0",
"webpack": "^1.13.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"postcss": "^5.0.19",
"postcss-browser-reporter": "^0.4.0",
"postcss-cssnext": "^2.5.2",
"postcss-import": "^8.1.0",
"postcss-js": "^0.1.2",
"postcss-loader": "^0.8.1",
"postcss-reporter": "^1.3.3",
"postcss-url": "^5.1.1",
"precss": "^1.4.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"author": "Cole Chamberlain <[email protected]> (https://github.com/cchamberlain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cchamberlain/react-hatch/issues"
},
"homepage": "https://react-hatch.js.org"
}