-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "refactor-plugin-common",
"version": "2.0.1",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"build-all": "npm run compile && npm run extract-api && npm run generate-docs",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist && rm -rf generated",
"prepublishOnly": "npm run compile",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"watch": "npm run clean && tsc -w --declaration",
"test": "mocha"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"seedrandom": "^3.0.5",
"shift-ast": "^6.1.0",
"shift-validator": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/mocha": "^8.0.1",
"@types/multimap": "^1.1.1",
"@types/node": "^14.0.27",
"@types/seedrandom": "^2.4.28",
"chai": "^4.2.0",
"mocha": "^8.1.0",
"prettier": "^2.0.5",
"shift-refactor": "^2.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}