This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "mobx-decorators",
"version": "6.0.1",
"description": "Several helper MobX decorators (setter, observe, save, ...)",
"repository": "farwayer/mobx-decorators",
"author": "farwayer <[email protected]>",
"license": "WTFPL",
"keywords": [
"mobx",
"decorator",
"setter",
"set",
"toggle",
"intercept",
"observe",
"save"
],
"main": "lib",
"jsnext:main": "esm",
"module": "esm",
"react-native": "src",
"types": "src/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build-lib && yarn build-esm",
"build-lib": "babel src --out-dir lib",
"build-esm": "ESM=1 babel src --out-dir esm",
"clean": "rm -rf lib esm",
"test": "nyc mocha",
"cover": "nyc report --reporter=text-lcov | coveralls",
"prepack": "yarn build && yarn test"
},
"peerDependencies": {
"mobx": "^4"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.0",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/register": "7.7.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.5",
"coveralls": "^3.0.7",
"mobx": "^4.14.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"should": "^13.2.3",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
},
"dependencies": {
"@babel/runtime": "7.7.1",
"decorating": "^1.1.0",
"rambda": "^4.0.2"
}
}