-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
40
41
{
"name": "sinap-cli",
"version": "0.0.5",
"readme": "README.md",
"description": "Command line interface for sinap",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/2graphic/sinap-cli"
},
"bin": {
"sinap-convert": "bin/convert.js",
"sinap-run": "bin/interpret.js"
},
"files": [
"bin/"
],
"scripts": {
"format": "tsfmt -r && tslint --fix --project .",
"lint": "tsfmt --verify && tslint --project .",
"build": "tsc -p .",
"test:nobuild": "echo no tests",
"test": "npm run build && npm run test:nobuild",
"prepublishOnly": "npm run lint && npm run test",
"clean": "rimraf ./node_modules ./typings ./lib"
},
"dependencies": {
"@types/argparse": "^1.0.30",
"@types/xml2js": "0.0.33",
"argparse": "^1.0.9",
"sinap-core": "^3.11.1",
"sinap-types": "^0.5.0",
"sinap-typescript-loader": "^0.4.19",
"xml2js": "^0.4.17"
},
"devDependencies": {
"tslint": "^4.5.1",
"typescript": "^2.2.2",
"typescript-formatter": "^5.1.2"
}
}