-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.78 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
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": "transition-group",
"version": "0.0.2",
"description": "like `<ReactTransitionGroup />` + callbacks, extras and child-specific customization",
"main": "dist/index.js",
"scripts": {
"storybook": "start-storybook -p 9001 -c storybook",
"storybook:build": "rimraf distStoryBook && build-storybook -c storybook -o distStorybook",
"build": "babel src -d dist",
"prepublish": "npm run clean && npm run build && npm run flow-copy",
"flow-copy": "flow-copy-source src dist",
"flow-watch": "clear; printf \"\\033[3J\" & npm run flow & fswatch -o ./ | xargs -n1 -I{} sh -c 'clear; printf \"\\033[3J\" && npm run flow'",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"clean": "rimraf dist && mkdir dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faceyspacey/transition-group.git"
},
"author": "James Gillmore <james@faceyspacey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/faceyspacey/transition-group/issues"
},
"homepage": "https://github.com/faceyspacey/transition-group#readme",
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.3.0",
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-knobs": "^1.7.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.3.2",
"babel-plugin-flow-react-proptypes": "^3.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-jest": "^19.0.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.20.2",
"flow-bin": "^0.38.0",
"flow-copy-source": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"jest-redux-snap": "^1.0.3",
"jest-storybook-facade": "^0.0.7",
"json": "^9.0.4",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-test-renderer": "^15.4.2",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"rimraf": "^2.6.0",
"storybook-addon-specifications": "^1.0.15",
"storybook-readme": "^1.3.1"
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "jest-storybook-facade/jest-facade.js",
"moduleNameMapper": {
"styles": "identity-obj-proxy"
},
"moduleFileExtensions": [
"js",
"css"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react-addons-transition-group": "^15.4.2"
}
}