-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.52 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
{
"name": "rn-classnames",
"version": "1.0.1",
"description": "Conditionally concatenate react-native StyleSheet-Objects together",
"main": "build.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "babel index.js --out-file build.js",
"prepublish": "npm run build",
"prepublishOnly": "np --no-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entwicklerstube/rn-classnames.git"
},
"engines": {
"node": ">=8"
},
"files": [
"build.js"
],
"keywords": [
"react-native",
"css",
"scss",
"classnames",
"util",
"utility",
"concat",
"jsx",
"name",
"names",
"class-names",
"classes",
"join",
"concat",
"stylesheet",
"style-sheet"
],
"author": "Michael J. Zoidl",
"license": "MIT",
"bugs": {
"url": "https://github.com/entwicklerstube/rn-classnames/issues"
},
"homepage": "https://github.com/entwicklerstube/rn-classnames#readme",
"babel": {
"presets": [
"minify",
[
"env",
{
"targets": {
"node": "8"
}
}
]
]
},
"jest": {
"setupTestFrameworkScriptFile": "jest-extended"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"coveralls": "^3.0.2",
"jest": "^23.2.0",
"jest-extended": "^0.7.2",
"np": "^3.0.4"
}
}