-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (31 loc) · 917 Bytes
/
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
{
"name": "babel-plugin-mobx-deep-action",
"license": "MIT",
"version": "1.6.1",
"description": "Allow to reduce boilerplate of writing async actions",
"repository": "mobxjs/babel-plugin-mobx-deep-action",
"author": "Strate <[email protected]>",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-regenerator": "^6.16.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.18.0",
"babylon": "^6.14.1",
"mocha": "^2.2.5"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"mobx",
"babel-plugin"
]
}