forked from AppAndFlow/react-native-design-utility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "react-native-design-utility",
"version": "0.0.30",
"description": "react-native utility library for ui",
"main": "dist/ReactNativeDesignUtility.js",
"module": "dist/ReactNativeDesignUtility.es6.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/EQuimper/react-native-design-utility"
},
"keywords": [
"react-native",
"design-system",
"design-utility",
"theme"
],
"files": [
"dist"
],
"author": {
"email": "quimperemanuel@gmail.com",
"name": "Emanuel Quimper <EQuimper>"
},
"scripts": {
"start": "cross-env NODE_ENV=development rimraf compiled dist && tsc-watch --onSuccess \"rollup -c\"",
"build": "tsc && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"test": "jest"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.1",
"@types/lodash.get": "^4.4.4",
"@types/react": "^16.4.8",
"@types/react-native": "^0.56.6",
"@types/react-test-renderer": "^16.0.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-preset-react-native": "^4.0.0",
"cross-env": "^5.2.0",
"jest": "^23.4.2",
"react": "^16.4.2",
"react-native": "^0.56.0",
"react-test-renderer": "^16.4.2",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^23.1.3",
"tsc-watch": "^1.0.26",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1"
},
"peerDependencies": {
"react": ">=15",
"react-native": ">=0.50.0"
},
"dependencies": {
"fs-extra": "^7.0.0",
"lodash.get": "^4.4.2"
}
}