-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "jsonapi-orchestrator",
"version": "0.1.0",
"description": "Jsonapi powered framework to harness the power of jsonapi with redux",
"main": "./index.js",
"scripts": {
"start": "yarn build && node ./dist/index.js",
"test": "jest --notify --watch",
"test-ci": "jest",
"release": "yarn build && yarn publish dist/",
"build": "yarn clean-dist && yarn build-dist && yarn copy-package",
"clean-dist": "node_modules/.bin/rimraf ./dist",
"build-dist": "babel src --out-dir dist --ignore */__tests__",
"copy-package": "cp -rf package.json dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyJobGlasses/jsonapi-orchestrator.git"
},
"keywords": [
"redux",
"jsonapi"
],
"author": "My Job Glasses",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyJobGlasses/jsonapi-orchestrator/issues"
},
"homepage": "https://github.com/MyJobGlasses/jsonapi-orchestrator#readme",
"dependencies": {
"@babel/runtime": "^7.2.0",
"json-api-normalizer": "^0.4.10",
"lodash": "^4.17.10",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-console-source": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"flow-bin": "^0.71.0",
"jest": "^25.2.3",
"jest-junit": "^4.0.0",
"redux-saga-test-plan": "^3.6.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2"
}
}