This repository was archived by the owner on Dec 18, 2023. It is now read-only.
forked from appbaseio/reactivecore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "@appbaseio/reactivecore",
"version": "9.6.21",
"description": "Core architecture of reactive UI libraries",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint .",
"start": "yarn run build -w",
"build": "babel --ignore __tests__ src --out-dir lib",
"precommit": "eslint .",
"prepublish": "yarn run build",
"version-upgrade": "nps upgrade-core -c ../../package-scripts.js",
"postpublish": "yarn run version-upgrade",
"test": "../../node_modules/jest/bin/jest.js --watch --env node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appbaseio/reactivecore.git"
},
"author": "Deepak Grover <[email protected]> (https://github.com/metagrover)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appbaseio/reactivecore/issues"
},
"homepage": "https://github.com/appbaseio/reactivecore#readme",
"dependencies": {
"cross-fetch": "^3.0.4",
"prop-types": "^15.6.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"xdate": "^0.8.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"nps": "^5.9.5"
}
}