-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
127 lines (127 loc) · 3.07 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "lux.js",
"version": "2.0.0",
"homepage": "https://github.com/LeanKit-Labs/lux.js",
"description": "Flux-based architecture for using ReactJS at LeanKit",
"author": "Jim Cowart",
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/lux.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Doug Neiner",
"email": "[email protected]",
"url": "http://code.dougneiner.com"
},
{
"name": "Ryan Niemeyer",
"email": "[email protected]",
"url": "http://knockmeout.net"
},
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://nerdventure.io/"
},
{
"name": "John Mathis",
"url": "https://github.com/JohnDMathis"
}
],
"main": "./lib/lux.js",
"keywords": [
"react",
"ReactJS",
"flux",
"LeanKit"
],
"scripts": {
"lint": "$(npm bin)/eslint --ext=js,jsx ./spec/ ./src/ --fix",
"build": "webpack --config webpack.config.js",
"test": "mocha -r spec/helpers/node-setup.js spec/**/*.spec.js --reporter spec",
"test:watch": "mocha -r spec/helpers/node-setup.js spec/**/*.spec.js --watch --reporter spec",
"prebuild": "npm run lint",
"pretest": "npm run build",
"pretest:watch": "npm run build"
},
"peerDependencies": {
"babel": "6.x",
"postal": "2.x"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"lodash": "^4.17.15",
"machina": "^4.0.2"
},
"devDependencies": {
"babel": "6.x",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.2.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015-without-strict": "0.0.4",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.10",
"create-react-class": "^15.6.3",
"dirty-chai": "^1.2.2",
"eslint-config-leankit": "^5.0.0",
"imports-loader": "^0.6.3",
"jsdom": "^9.0.0",
"mocha": "^6.2.0",
"postal": "^2.0.5",
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"sinon": "~1.11.0",
"sinon-chai": "^2.7.0",
"source-map-loader": "^0.1.3",
"source-map-support": "LeanKit-Labs/node-source-map-support#isbrowser-fix",
"terser-webpack-plugin": "^2.0.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"files": [
"lib",
"LICENSE"
],
"nyc": {
"report-dir": "coverage",
"require": [
"babel-register"
],
"exclude": [
"*.conf.js",
"*.config.js",
"_spec-tmp",
"client",
"configs",
"coverage",
"public",
"tools",
"server/spec"
],
"all": true
}
}