-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1001 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1001 Bytes
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
{
"name": "mobx-app",
"version": "1.0.3",
"description": "MobX, with a functional structure.",
"repository": {
"type": "git",
"url": "git://github.com/danieldunderfelt/mobx-app.git"
},
"main": "lib/index",
"scripts": {
"test": "jest",
"build": "rm -r lib && node_modules/babel-cli/bin/babel.js src --out-dir lib",
"preversion": "npm run test && npm run build"
},
"keywords": [
"mobx",
"functional",
"mobx-app",
"structure"
],
"author": "Daniel Dunderfelt <daniel@developsuperpowers.com>",
"license": "MIT",
"peerDependencies": {
"lodash": ">=4",
"mobx": ">=2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-stage-2": "^6.17.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"jest-cli": "^16.0.1",
"lodash": "^4.16.4",
"mobx": "^2.6.0"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"invariant": "^2.2.1"
}
}