-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 829 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 829 Bytes
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
{
"name": "lier2ts",
"version": "1.0.4",
"description": "convert lier to typescript typings",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lab": "onchange -i -k './src/**/*.ts' './lab/**/*.ts' -- ts-node lab/test.ts",
"build": "rm -rf ./dist && npx tsc"
},
"keywords": [
"lier",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/GaryChangCN/lier2typescript"
},
"files": [
"dist"
],
"author": "garychangcn",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.17",
"onchange": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"dependencies": {
"lier": "^2.1.20",
"lodash": "^4.17.11"
}
}