-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "can-migrate",
"version": "2.3.2",
"description": "Codemods to simplify upgrading CanJS.",
"main": "lib/",
"scripts": {
"preversion": "npm test",
"publish": "git push origin --tags && git push origin",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"generate": "./build/generate.js",
"compile": "rm -rf lib/ && babel -d lib/ src/ --ignore src/templates",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel-core/register",
"mocha-debug": "mocha --inspect-brk test/ --compilers js:babel-core/register",
"test": "npm run test-prep && npm run jshint && npm run mocha",
"test-debug": "npm run test-prep && npm run mocha-debug",
"test-no-jshint": "npm run test-prep && npm run mocha",
"test-prep": "npm run generate && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canjs/can-migrate.git"
},
"bin": {
"can-migrate": "./bin/can-migrate.js",
"can-migrate-generate": "./bin/can-migrate-generate.js"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 0.12.0"
},
"keywords": [
"canjs"
],
"preferGlobal": true,
"author": {
"name": "Bitovi",
"email": "[email protected]",
"url": "http://bitovi.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/can-migrate/issues"
},
"homepage": "https://github.com/canjs/can-migrate#readme",
"dependencies": {
"can-string": "^1.1.0",
"can-view-parser": "^4.0.2",
"deep-assign": "^3.0.0",
"disparity": "^2.0.0",
"execa": "^0.9.0",
"fs-extra": "^5.0.0",
"globby": "^7.1.1",
"is-git-clean": "^1.1.0",
"js-codemod": "^7.0.0",
"jscodeshift": "^0.6.4",
"jscodeshift-imports": "^1.0.1",
"jsesc": "^2.2.0",
"meow": "^4.0.0",
"promise-map-series": "^0.2.3",
"stream": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"ejs": "^2.6.2",
"js-beautify": "^1.6.4",
"jshint": "^2.9.3",
"mocha": "^5.0.0"
}
}