-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
88 lines (88 loc) · 2.75 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
{
"name": "react-primitives",
"version": "0.8.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/scripts/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.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-airbnb": "^2.4.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"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": "^16.5.2",
"react-360": "^1.1.0",
"react-art": "^16.5.2",
"react-dom": "^16.5.2",
"react-figma": "0.0.57",
"react-native": "^0.52.0",
"react-native-web": "^0.11.0",
"react-sketchapp": "^2.0.0",
"react-test-renderer": "^16.4.0",
"watchify": "^3.7.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
},
"dependencies": {
"animated": "^0.2.2",
"create-react-class": "^15.6.3",
"prop-types": "^15.7.2",
"react-timer-mixin": "^0.13.4"
},
"peerDependencies": {
"react": ">=16.5.1",
"react-art": ">=16.5.1",
"react-dom": ">=16.5.1",
"react-native-web": ">=0.11.0"
}
}