-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
92 lines (92 loc) · 2.98 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
{
"name": "microcosm",
"version": "12.15.0",
"private": true,
"description": "Flux with actions at center stage. Write optimistic updates, cancel requests, and track changes with ease.",
"main": "index.js",
"module": "es/index.js",
"homepage": "http://code.viget.com/microcosm",
"scripts": {
"build": "make all",
"flow": "flow",
"lint": "prettier -l './{src,test,examples}/**/*.js' && eslint './{src,test,examples}/**/*.js'",
"pretty": "prettier --write './{docs,src,test,examples}/**/*.{md,js,css}' && eslint --fix './{src,test,examples}/**/*.js'",
"docs": "jsdoc src -c jsdoc/conf.json && jsdoc src -c jsdoc/conf.json --package package.json",
"test": "jest --config test/dev.config.json --maxWorkers=2",
"test:cov": "jest --config test/dev.config.json --coverage --maxWorkers=2",
"test:prod": "make min && NO_ASSERTS=true jest --config test/prod.config.json --maxWorkers=2",
"report-coverage": "codecov coverage/lcov.info",
"release": "make release"
},
"repository": {
"type": "git",
"url": "git://github.com/vigetlabs/microcosm.git"
},
"bugs": {
"url": "https://github.com/vigetlabs/microcosm/issues",
"email": "[email protected]"
},
"keywords": [
"react",
"flux"
],
"license": "MIT",
"dependencies": {
"form-serialize": "^0.7.2",
"rollup-plugin-unassert": "^0.2.0"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.17.2",
"browser-sync": "^2.18.13",
"codecov": "^3.1.0",
"console.table": "^0.10.0",
"elizabot": "^0.0.2",
"enzyme": "^3.8.0",
"enzyme-adapter-react-15": "^1.2.0",
"eslint": "^5.10.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-flowtype-errors": "^3.3.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "~0.53.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.4",
"jsdoc-babel": "^0.5.0",
"microcosm-debugger": "^3.0.0",
"minimist": "^1.2.0",
"prettier": "^1.13.6",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-hot-loader": "^4.5.3",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^15.0.0",
"rollup": "^0.67.4",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.0",
"uid": "^0.0.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"zen-observable": "~0.5.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}