-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 2.04 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": "typescript-plugins-of-mine",
"version": "1.0.1",
"description": "typescript plugins, test and experiments of cancerberosgx",
"keywords": [
"TypeScript",
"TypeScript Language Service",
"TypeScript plugin",
"TypeScript Compiler",
"TypeScript refactor",
"source code refactor",
"plugin"
],
"author": "Sebastian Gurin",
"license": "MIT",
"scripts": {
"build": " npx yamat run npm run build",
"test": " npx yamat run npm test",
"test-clone": "rm -rf ../typescript-plugins-of-mine-test && mkdir ../typescript-plugins-of-mine-test && cd ../typescript-plugins-of-mine-test && git clone ../typescript-plugins-of-mine/.git && cd typescript-plugins-of-mine && npm install && npm test",
"doc": " npx yamat run npm run doc",
"all": "npm run clean && npx yamat run npm run build && npm run test && npm run doc",
"clean": "npx yamat run npm run clean && npm run clean-no-doc",
"clean-no-doc": "exit 0",
"all-no-doc": "exit 0",
"all-light": "npx yamat run npm run clean && npx yamat run npm run build && npx yamat run npm test",
"yamat-link": "npx yamat link && npx yamat run \"rm -rf node_modules package-lock.json\" && npx yamat run \"npm i\" && npx yamat run \"npm run build\" && npx yamat run npm test",
"yamat-unlink-pack": "npx yamat run \"rm -rf node_modules package-lock.json\" && npx yamat run npm i && npx yamat unlink --version pack && npx yamat run \"rm -rf node_modules package-lock.json\" && npx yamat run npm i && npx yamat run npm run build && npx yamat run npm run test",
"yamat-patch-publish": "npx yamat run \"npm version patch\" && npx yamat unlink && npx yamat --break-on-error no run npm publish",
"initial-install": "npx yamat run npm i --ignore-scripts && npx yamat run npm run build && npx yamat run npm i",
"all2": "npm run clean-no-doc && npm run initial-install && npm run test"
},
"repository": "https://github.com/cancerberoSgx/typescript-plugins-of-mine",
"devDependencies": {
"yamat": "^0.1.2"
},
"dependencies": {
"ts-morph": "^2.3.0"
}
}