-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 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
32
33
34
35
36
37
{
"name": "ng-gulp2webpack-codemod",
"version": "1.0.0",
"description": "A collection of codemods that allow you to transform your angular gulp code to webpack compatible modules.",
"main": "index.js",
"scripts": {
"test": "ava",
"test:watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shwaqar/ng-gulp2webpack-codemod.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shwaqar/ng-gulp2webpack-codemod/issues"
},
"homepage": "https://github.com/shwaqar/ng-gulp2webpack-codemod#readme",
"dependencies": {
"jscodeshift": "^0.4.0",
"lodash": "^4.17.5",
"recast": "^0.13.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.17.0"
},
"ava": {
"files": [
"./tests/*-test.js"
]
}
}