-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "refactoring-er",
"version": "1.3.3",
"description": "Reactoring Tool in goorm",
"main": "index.js",
"bin": {
"refactoring-er": "./index.js"
},
"scripts": {
"test": "jest --coverage",
"test:report": "http-server ./reports/coverage",
"dev": "concurrently \"npm run lint:watch\" \"npm run prettier:watch\"",
"lint": "npm run lint:node && npm run lint:jest",
"lint:watch": "concurrently \"npm run lint:node:watch\" \"npm run lint:jest:watch\"",
"lint:node": "eslint --ext js,json ./src/",
"lint:jest": "eslint -c ./.eslintrc.jest.js --ext test.js ./src/",
"lint:node:watch": "onchange 'src/**/*.js' -- eslint --ext js,json {{changed}}",
"lint:jest:watch": "onchange 'src/**/*.test.js' -- eslint -c ./.eslintrc.jest.js --ext test.js {{changed}}",
"prettier:watch": "onchange 'src/**/*.js' -- prettier --write {{changed}}",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/goorm-dev/refactoring-er.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/goorm-dev/refactoring-er/issues"
},
"homepage": "https://github.com/goorm-dev/refactoring-er#readme",
"dependencies": {
"commander": "^5.1.0",
"cosmiconfig": "^6.0.0",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.0",
"eslint-plugin-prettier": "^3.1.3",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"lint-staged": "^10.2.2",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
}
}