-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.74 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "state-modules",
"description": "A lightweight immutable state management library",
"version": "1.9.0",
"author": "Braden R. Napier",
"public": true,
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prepare": "npm-run-all flow:flow-typed",
"prepublishOnly": "npm-run-all test build",
"flow:flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite || true",
"build": "rimraf dist && npm-run-all -p build:*",
"build:flow": "flow-copy-source src dist",
"build:babel": "cross-env NODE_ENV=production babel -d dist src",
"try": "cross-env NODE_ENV=development babel-node ./test/quick-test.js",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register --recursive ./test/tests/*.js",
"coverage": "cross-env NODE_ENV=test nyc yarn test && nyc report --reporter=html --reporter=text-lcov | coveralls"
},
"maintainers": [
"Braden Napier (https://github.com/bradennapier)"
],
"contributors": [
"Braden Napier (https://github.com/bradennapier)"
],
"repository": {
"type": "git",
"url": "https://github.com/odo-network/state-modules/"
},
"keywords": [
"state",
"redux",
"manager",
"async",
"reducer",
"hooks",
"components"
],
"files": [
"dist/",
".flowconfig",
".nvmrc",
".babelrc"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-istanbul": "^5.1.4",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-promise": "^4.1.1",
"flow-bin": "^0.98.1",
"flow-copy-source": "^2.0.4",
"flow-typed": "^2.5.1",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"projectz": "^1.7.4",
"rimraf": "^2.6.3"
},
"dependencies": {
"immuta": "^1.4.0",
"to-redux-type": "^1.3.1"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
],
"require": [
"@babel/register"
],
"exclude": [
"test/",
"**/node_modules/**"
],
"sourceMap": false,
"instrument": false
},
"bugs": {
"url": "https://github.com/odo-network/state-modules/issues"
}
}