-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.79 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
{
"name": "better-name",
"version": "0.7.3",
"description": "CLI to rename ES2015 module files",
"bin": {
"better-name": "lib/cli.js"
},
"scripts": {
"clean": "rimraf lib built coverage",
"compile": "tsc",
"lint": "tslint -p .",
"test": "jest",
"prepare": "yarn compile && cpx \"built/src/**/*\" lib"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Quramy/better-name.git"
},
"keywords": [
"refactor"
],
"author": "Quramy",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Quramy/better-name/issues"
},
"homepage": "/~https://github.com/Quramy/better-name#readme",
"devDependencies": {
"@types/babel-traverse": "^6.25.3",
"@types/babylon": "^6.16.2",
"@types/glob": "^5.0.35",
"@types/jest": "^22.2.2",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.7.5",
"@types/prettier": "^1.12.0",
"@types/rimraf": "^2.0.2",
"@types/yargs": "^11.0.0",
"coveralls": "^3.0.0",
"cpy-cli": "^1.0.1",
"jest": "^22.4.3",
"ts-jest": "^22.4.2",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-language-service": "^0.9.9"
},
"dependencies": {
"@babel/traverse": "^7.0.0-beta.46",
"@babel/types": "^7.0.0-beta.46",
"babylon": "^7.0.0-beta.46",
"glob-all": "^3.1.0",
"mkdirp": "^0.5.1",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"typescript": "^3.5.0",
"yargs": "^11.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(integration-test/.*|(src/.*\\.test))\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"built/",
"simple_ts_prj/"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"testURL": "http://localhost/"
}
}