-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "strapi-to-typescript",
"version": "2.0.14",
"description": "Convert the strapi models to typescript interfaces.",
"main": "index.js",
"bin": {
"sts": "./bin/run.js"
},
"scripts": {
"start": "tsc -w",
"prebuild": "rm -rf ./dist",
"build": "tsc && cp ./src/.stsconfig.js ./dist",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"pretest": "rm -rf ./src/test/out*",
"test": "ts-node src/test.ts",
"test12": "ts-node src/test.ts test1 test2",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikvullings/strapi-to-typescript.git"
},
"keywords": [
"Strapi",
"TypeScript",
"model",
"generator"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"contributors": [
"Anthony Perron <[email protected]> (http://anthonyperron.fr)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/erikvullings/strapi-to-typescript/issues"
},
"homepage": "https://github.com/erikvullings/strapi-to-typescript#readme",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/node": "^14.14.10",
"@types/pluralize": "^0.0.29",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}