-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 KB
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
{
"name": "fipe-table",
"version": "1.0.7",
"description": "Node SDK to retrive information of the FIPE table.",
"keywords": [
"fipe-table",
"brazil",
"vehicles",
"prices",
"cars"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/ernanirst/node-fipe-table/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ernanirst/node-fipe-table.git"
},
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/index.js",
"demo": "npm run build && node dist/demo/app.js",
"debug": "npm run clean && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files --source-maps && node --nolazy --inspect-brk=9229 dist/index.js",
"prepublish": "npm run build"
},
"dependencies": {
"axios": "^0.18.0",
"qs": "^6.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rimraf": "^2.6.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0"
}
}