-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 829 Bytes
/
package.json
File metadata and controls
31 lines (31 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
{
"name": "saft-api",
"version": "0.0.1",
"description": "Tool thats helps you quickly setup a Web API straight from a SAF-T (PT) file",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"parse": "node lib/parser.js",
"serve": "node lib/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"command-line-args": "^5.0.2",
"cors": "^2.8.5",
"json-server": "^0.14.0",
"npm": "^6.4.1",
"read-file": "^0.2.0",
"write": "^1.0.3",
"xml2json": "^0.11.2"
}
}