-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.8 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
85
86
87
88
89
90
{
"name": "react-primitives",
"version": "0.4.3-1",
"description": "Primitive React Interfaces Across Targets",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf lib && babel -d lib src",
"build:webpack": "webpack",
"build:watch": "npm run build -- --watch",
"run:packager": "./node_modules/react-native/packager/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/native/ios",
"run:android": "react-native run-android --root ./example/android",
"run:webpack": "webpack --watch",
"test": "jest",
"lint": "eslint .",
"happo": "sh ./scripts/happo-ci.sh",
"travis": "npm run --silent test && npm run --silent lint",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelandrichardson/react-primitives.git"
},
"keywords": [
"react"
],
"author": "Leland Richardson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lelandrichardson/react-primitives/issues"
},
"homepage": "https://github.com/lelandrichardson/react-primitives#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-airbnb": "^1.1.1",
"babelify": "^7.2.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-import-resolver-babel-module": "^2.2.1",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^4.3.0",
"happo": "^3.0.1",
"jest": "^18.0.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.0.3",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"octonode": "^0.7.7",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.4.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.4.0",
"react-native": "^0.39.2",
"react-sketchapp": "^0.6.0",
"react-test-renderer": "^15.4.1",
"react-vr": "1.2.0",
"watchify": "^3.7.0",
"webpack": "^1.14.0"
},
"dependencies": {
"animated": "^0.2.0",
"asap": "^2.0.5",
"deline": "^1.0.4",
"flexibility": "^2.0.1",
"inline-style-prefixer": "^2.0.5",
"invariant": "^2.2.1",
"normalize-css-color": "^1.0.1",
"prop-types": "^15.5.10",
"react-native-web": "0.0.126",
"react-timer-mixin": "^0.13.3",
"string-hash": "^1.1.3"
},
"peerDependencies": {
"react": "*"
}
}