-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "@precor/web-api-bridge",
"version": "2.1.5",
"description": "Provides api marshalling for React Native WebvViews and web page iframes.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Rob Seaman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/precor/web-api-bridge.git"
},
"scripts": {
"build": "rimraf lib && npx babel --copy-files src --out-dir lib",
"test": "jest src --watchAll",
"test:build": "jest lib",
"coverage": "jest --coverage src",
"doc:md": "rimraf docs/* && documentation build ./src/index.js -f md -o docs/WEBAPIBRIDGE.md",
"lint": "eslint src"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"documentation": "^12.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.2.7",
"prettier": "^2.0.2",
"prop-types": "^15.7.2",
"rimraf": "^3.0.2"
},
"dependencies": {
"core-js": "^3.6.4"
},
"jest": {
"roots": [
"<rootDir>/src"
]
}
}