-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "react-delayed-list",
"version": "1.0.8",
"description": "A delayed list rendering React component",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib && mkdir lib",
"build": "npm run clean && babel src --out-file lib/index.js --ignore test.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"component",
"UI"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisgreg/react-delayed-list.git"
},
"author": "Chris Gregori <chrisgreg23@googlemail.com>",
"license": "ISC",
"dependencies": {
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"enzyme": "^2.8.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2"
}
}