-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 734 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 734 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
{
"name": "@gfoust/flowcmd",
"version": "1.0.1",
"description": "Command line interpreter for OverFlow charts",
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"flowcmd": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfoust/flowcmd.git"
},
"author": "Gabriel Foust",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfoust/flowcmd/issues"
},
"homepage": "https://github.com/gfoust/flowcmd#readme",
"dependencies": {
"xmldom": "^0.1.27"
},
"devDependencies": {
"@types/node": "^8.0.24",
"@types/xmldom": "^0.1.29",
"typescript": "^2.4.2"
}
}