forked from danleavitt0/auto-yield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 783 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 783 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
{
"name": "auto-yield-delegate",
"description": "Automatically add yields and generators.",
"repository": "github:9dots/auto-yield",
"version": "0.9.2",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"prepublish": "make build",
"postpublish": "make clean",
"postversion": "git push && git push --tags && npm publish --access=public",
"watch": "babel src --out-dir lib --watch"
},
"dependencies": {
"@babel/standalone": "^7.18.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-types": "^6.26.0",
"camel-case": "^1.2.2"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-polyfill": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"tape": "^4.2.2"
}
}