-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
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
{
"name": "@brendanannable/jsmod",
"version": "0.1.0",
"description": "An AST-based JavaScript refactoring tool.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && babel src/ --out-dir lib/ --ignore \"**/*_test.js\"",
"clean": "rimraf lib/",
"lint": "eslint src/ test/ *.js",
"test": "mocha --require babel-polyfill --compilers js:babel-register \"src/**/*_test.js\"",
"test:watch": "mocha --watch --compilers js:babel-register \"src/**/*_test.js\"",
"ci": "npm run lint && npm run test",
"prepush": "npm run ci"
},
"author": "Brendan Annable",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2016": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"husky": "^0.12.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7"
},
"dependencies": {
"ast-types": "^0.9.14",
"baobab": "^2.5.0",
"bluebird": "^3.4.7",
"glob": "^7.1.1",
"immutable": "^3.8.1",
"mkdirp": "^0.5.1",
"pegjs": "^0.10.0",
"recast": "^0.12.7"
}
}