forked from alexhisen/mobx-form-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "mobx-form-store",
"version": "1.0.10",
"description": "MobX Backing Store for Forms with optional Auto/Incremental Save",
"main": "lib/FormStore.js",
"scripts": {
"build": "webpack && webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js -r mock-local-storage",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js -r mock-local-storage",
"prepublish": "npm build && npm test"
},
"dependencies": {
"mobx": "^4.0.0",
"babel-polyfill": "^6.9.1"
},
"devDependencies": {
"babel": "^6.3.13",
"babel-core": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.3.0",
"fast-async": "6.0.34",
"mocha": "^2.3.4",
"mock-local-storage": "^1.0.2",
"webpack": "^1.12.9",
"yargs": "^3.32.0"
},
"peerDependencies": {
"mobx": "^4.0.0",
"babel-polyfill": "^6.9.1"
},
"files": [
"lib",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/alexhisen/mobx-form-store.git"
},
"keywords": [
"mobx",
"form",
"autosave"
],
"author": "Alex Hisen <[email protected]>",
"contributors": [
"Pawel Rychlik <[email protected]>",
"Mateusz Mrowiec <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexhisen/mobx-form-store/issues"
},
"homepage": "https://github.com/alexhisen/mobx-form-store"
}