-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "cryptid-react-native",
"version": "0.0.6",
"description": "javascript react-native client for cryptid analytics",
"main": "dist/index.js",
"website": "https://cryptid.adorable.io",
"scripts": {
"build:lib": "BABEL_ENV=lib $(npm bin)/babel src/ --ignore=src/__mocks__ --out-dir=dist",
"build": "rm -rf dist/ && npm run build:lib",
"watch:src": "npm run build:lib -- --watch",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adorableio/cryptid-react-native.git"
},
"keywords": [
"javascript",
"react-native",
"cryptid",
"analytics"
],
"author": "Zachery Moneypenny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adorableio/cryptid-react-native/issues"
},
"homepage": "https://github.com/adorableio/cryptid-react-native#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"ci-publish": "^1.3.0",
"eslint": "^4.7.2",
"eslint-config-adorable": "0.0.6",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"jest": "^21.1.0",
"jq2": "^1.0.1",
"semver": "^5.4.1"
},
"dependencies": {
"react-native-device-info": "^0.11.0"
},
"eslintConfig": {
"extends": [
"adorable"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**"
]
}
}