forked from winkerVSbecks/draper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "Draper",
"version": "1.1.0",
"main": "dist/index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"dev": "npm run dev:ios",
"dev:ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"dev:android": "node node_modules/react-native/local-cli/cli.js run-android",
"build": "babel src --out-dir dist",
"test:watch": "ava --watch",
"test": "ava"
},
"ava": {
"babel": "inherit",
"files": [
"src/**/*.spec.js",
"!test/entry.js"
],
"require": [
"babel-register",
"babel-polyfill",
"react-native-mock/mock",
"./test/entry.js"
]
},
"dependencies": {
"ramda": "0.21.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.13.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-react-native": "^1.2.0",
"react": "^15.2.1",
"react-native": "^0.30.0",
"react-native-mock": "^0.2.6"
},
"author": {
"name": "Varun Vachhar",
"url": "http://varun.ca"
},
"license": "MIT",
"keywords": [
"atomic",
"functional",
"modular",
"styles",
"react native",
"draper"
],
"repository": {
"type": "git",
"url": "https://github.com/winkerVSbecks/draper.git"
},
"bugs": {
"url": "https://github.com/winkerVSbecks/draper/issues"
},
"homepage": "https://github.com/winkerVSbecks/draper"
}