-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "formobx",
"version": "0.4.6",
"description": "A library for removing a lot of boilerplate from forms with Mobx.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib; tsc",
"lint": "tslint 'src/**/*.ts{,x}'; exit 0",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mjewell/formobx.git"
},
"keywords": [
"react",
"reactjs",
"form",
"forms",
"mobx"
],
"author": "Michael Jewell (http://github.com/mjewell)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjewell/formobx/issues"
},
"devDependencies": {
"@types/core-js": "^0.9.34",
"@types/lodash": "^4.14.52",
"@types/node": "^6.0.41",
"@types/react": "^0.14.57",
"@types/react-dom": "^0.14.17",
"awesome-typescript-loader": "^3.0.0-beta.17",
"source-map-loader": "^0.1.6",
"tslint": "^3.15.1",
"tslint-eslint-rules": "^1.5.0",
"tslint-microsoft-contrib": "^2.0.12",
"tslint-react": "^1.0.0",
"typescript": "^2.2.1"
},
"dependencies": {
"lodash": "^4.15.0",
"mobx": "^2.2.2",
"mobx-react": "^3.3.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"sirmixalot": "0.0.2"
}
}