-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "@freewheel/modulajs",
"version": "1.2.1",
"description": "A modularization framework to manage application states using an immutable model tree",
"main": "lib/index.js",
"author": "eng-ui@freewheel.tv",
"license": "Apache-2.0",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && babel src --ignore **/__tests__/** --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint --cache --cache-location node_modules/.cache --ext js .",
"lint_one": "eslint",
"precommit": "lint-staged",
"prepublish": "in-publish && npm run build || not-in-publish",
"test": "npm run test_one './src/**/__tests__/*.*'",
"test_cov": "rimraf coverage && cross-env NODE_ENV=test babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha './src/**/__tests__/*.*'",
"test_cov_min": "npm run test_cov -- --report lcovonly -- --reporter min",
"test_one": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --require @babel/register"
},
"homepage": "https://github.com/freewheel/modulajs",
"bugs": {
"url": "https://github.com/freewheel/modulajs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freewheel/modulajs.git"
},
"keywords": [
"modula",
"modularization",
"modulajs",
"application-state",
"state-management",
"immutable",
"model",
"store",
"dispatcher",
"reducer"
],
"lint-staged": {
"*.js": "lint_one"
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"prop-types": "^15.8.1",
"react-immutable-proptypes": "^2.1.0",
"redux": "^3.7.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"chai": "^4.1.2",
"coveralls": "^3.1.1",
"cross-env": "^5.1.4",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-modulajs": "^1.1.0",
"husky": "^0.14.3",
"in-publish": "^2.0.0",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.3"
}
}