forked from f2etw/detect-inapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "detect-inapp",
"version": "1.1.0",
"description": "detect browser or in-app information for mobile",
"main": "lib/inapp.js",
"repository": "[email protected]:f2etw/detect-inapp.git",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"develop": "jest --watch ./src",
"test": "eslint ./src; jest --coverage ./src",
"build": "rm -rf lib && mkdir lib && babel src/inapp.js --out-file lib/inapp.js",
"demo": "react-scripts start",
"deploy": "react-scripts build && gh-pages -d build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"homepage": "https://f2etw.github.io/detect-inapp",
"files": [
"lib"
],
"dependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-react-native": "^1.9.2",
"clipboard": "^1.6.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"gh-pages": "^1.0.0",
"jest": "^20.0.3",
"primer-css": "^6.0.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-icons": "^2.2.5",
"react-scripts": "1.0.1",
"semantic-release": "^6.3.6"
}
}