forked from aputinski/react-navigation-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "react-navigation-controller",
"version": "3.0.2",
"description": "React view manager similar to UINavigationController",
"keywords": [
"react",
"react-component"
],
"license": "MIT",
"main": "dist/navigation-controller.js",
"scripts": {
"start": "webpack-dev-server --content-base examples/ --port 3000 --hot",
"test": "./node_modules/karma/bin/karma start",
"dist": "rm -rf dist && mkdir dist && babel src --out-dir dist",
"dist/example": "webpack --dist",
"prepublish": "npm run dist",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "[email protected]:aputinski/react-navigation-controller.git"
},
"author": "Adam Putinski",
"dependencies": {
"classnames": "2.2.5",
"rebound": "0.0.13"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"chai": "3.5.0",
"karma": "1.2.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-mocha": "1.1.1",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"minimist": "1.2.0",
"mocha": "3.0.2",
"react": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-dom": "15.3.1",
"sinon": "1.17.5",
"standard": "8.0.0-beta.5",
"webpack": "1.13.2",
"webpack-dev-server": "1.14.1"
},
"standard": {
"ignore": [
"node_modules/**/*",
"examples/assets/**/*"
]
}
}