-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "breakdancer",
"version": "4.1.1",
"description": "A breakpoint tracking utility",
"main": "./lib",
"browser": "./lib",
"module": "./index",
"scripts": {
"lint": "eslint-godaddy *.js",
"test:platforms": "mocha --require react-native-mock/mock.js --require @babel/register ./test.js ./test.native.js",
"build": "babel *.js -d ./lib",
"prepublish": "npm run build",
"pretest": "npm run lint",
"test": "nyc --reporter=text --reporter=json-summary npm run test:platforms",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/breakdancer.git"
},
"keywords": [
"breakpoints",
"breakdancer",
"breakpoint",
"tracking",
"break",
"point"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"assume": "^1.5.2",
"coveralls": "^3.0.0",
"eslint": "^5.12.1",
"eslint-config-godaddy": "^2.0.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^5.0.0",
"nyc": "^13.2.0",
"pre-commit": "^1.2.2",
"react": ">=15",
"react-dom": ">=15",
"react-native": "^0.58.3",
"react-native-mock": "^0.3.1"
},
"pre-commit": "lint, test",
"dependencies": {
"propget": "^1.1.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"peerDependencies": {
"react": ">=15"
}
}