forked from catc/react-timekeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.06 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
{
"name": "react-timekeeper",
"version": "1.0.8",
"description": "Time picker based on the style of the Google Keep app",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/catc/react-timekeeper.git"
},
"homepage": "https://catc.github.io/react-timekeeper/",
"keywords": [
"react",
"time",
"time picker",
"picker",
"hour",
"minute"
],
"author": "Catalin Covic <[email protected]>",
"license": "MIT",
"scripts": {
"test": "node_modules/.bin/jest",
"test:update-snapshots": "npm run test -- -u",
"dev": "node ./bin/docs-dev.js",
"build": "NODE_ENV=production node ./bin/docs-build.js",
"lib": "rm -rf lib && mkdir lib && babel src --ignore __tests__/ -d lib",
"libwin": "rimraf lib && mkdir lib && babel src --ignore __tests__/ -d lib"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.22.0",
"block-loader": "^2.1.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.13.1",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"highlight.js": "^9.10.0",
"import": "0.0.6",
"jest": "^18.1.0",
"node-sass": "^4.3.0",
"postcss-loader": "^1.2.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.3",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"radium": "^0.19.1",
"react-motion": "^0.4.7"
},
"jest": {
"rootDir": "src",
"testRegex": "(/__tests__/.*)\\.js$"
}
}