-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "async-operations-manager",
"version": "1.0.0",
"description": "A library to generate and represent stateful metaData of an async request and as an 'operation'. ",
"scripts": {
"test": "npx jest",
"ci-tests": "npx jest -u",
"build": "babel src --out-dir ./dist --source-maps",
"coverage": "nyc mocha --require @babel/register src/",
"sendCoverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run build"
}
},
"author": "Darien Lombardi https://github.com/dlombardi",
"license": "MIT",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/dlombardi/async-operations-manager/issues"
},
"keywords": [
"operation",
"async",
"fetch",
"get",
"pull",
"put",
"state",
"metaData",
"request",
"xhr",
"post",
"redux",
"mobx",
"flux"
],
"jest": {
"cacheDirectory": "unit-tests/.jest-cache/",
"coverageDirectory": "unit-tests/coverage/",
"coveragePathIgnorePatterns": [
"/__tests__/",
"/unit-tests/"
],
"setupTestFrameworkScriptFile": "./unit-tests/setupTestFramework",
"testPathIgnorePatterns": [
"/e2e-tests/",
"/node_modules/",
"/dist/"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"just-extend": ">=4.0.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"jasmine-reporters": "^2.3.2",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.1"
}
}