forked from OnetapInc/async-chain-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 926 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
{
"name": "async-chain-proxy",
"version": "0.1.5",
"description": "async-chain-proxy enable to call member functions by method chains.",
"main": "dist/index.js",
"scripts": {
"pretest": "babel test --source-maps --out-dir test_dist",
"test": "mocha test_dist",
"build": "babel src --source-maps --out-dir dist --ignore '**/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/OnetapInc/async-chain-proxy.git"
},
"bugs": "https://github.com/OnetapInc/async-chain-porxy/issues",
"author": "yamada <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-es2015": "^6.24.1",
"mocha": "^3.3.0"
}
}