forked from buxlabs/amd-to-es6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "@buxlabs/amd-to-es6",
"version": "0.12.3",
"description": "convert amd to es6",
"main": "index.js",
"scripts": {
"test": "ava \"test/spec/**/*.js\"",
"coverage": "nyc npm test",
"lint": "eslint ."
},
"bin": {
"amdtoes6": "./bin/cli.js"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buxlabs/amd-to-es6.git"
},
"keywords": [
"amd",
"es6",
"converter"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/buxlabs/amd-to-es6/issues"
},
"homepage": "https://github.com/buxlabs/amd-to-es6#readme",
"devDependencies": {
"ava": "0.25.0",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"normalize-newline": "^3.0.0",
"nyc": "11.4.1",
"shelljs": "0.8.0"
},
"dependencies": {
"@buxlabs/ast": "git+https://github.com/harkylton/ast.git",
"@buxlabs/utils": "^2.2.2",
"array-uniq": "^1.0.3",
"commander": "^2.13.0",
"glob": "^7.1.2",
"mkdirp": "^0.5.1"
}
}