-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.03 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sgdexpress",
"version": "0.0.3",
"description": "Integração SGDEXPRESS ",
"main": "index.js",
"author": "Junior Ferreira <[email protected]>",
"license": "Apache License 2.0",
"dependencies": {
"got": "^8.0.3",
"xml2js": "^0.4.19",
"xml2json": "^0.11.0"
},
"devDependencies": {
"ava": "0.25.0",
"coveralls": "3.0.0",
"nyc": "11.4.1",
"xo": "0.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Juniiorf/sgdexpress.git"
},
"keywords": [
"condutor",
"placa",
"veículos",
"detran"
],
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js ./",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js ./ --fix",
"clean": "rm -rf dist && mkdir dist",
"start": "if [ ! -d 'node_modules/' ]; then yarn install; fi && yarn run development",
"development": "NODE_ENV=development nodemon --exec babel-node index.js",
"stage": "NODE_ENV=stage nodemon --exec babel-node index.js",
"production": "NODE_ENV=production nodemon --exec babel-node index.js",
"build": "yarn run build:development",
"build:development": "yarn run clean && NODE_ENV=development babel . -d dist --ignore dist,node_modules --copy-files --source-maps=inline && cd dist && yarn install",
"build:stage": "yarn run clean && NODE_ENV=stage babel . -d dist --ignore dist,node_modules --copy-files --source-maps=inline && cd dist && yarn install",
"build:production": "yarn run clean && NODE_ENV=production babel . -d dist --ignore dist,node_modules --copy-files --source-maps=inline && cd dist && yarn install",
"compiled": "yarn run compiled:local",
"compiled:local": "NODE_ENV=development forever ./dist/index.js",
"compiled:development": "NODE_ENV=development forever ./dist/index.js",
"compiled:production": "NODE_ENV=production forever ./dist/index.js",
"test": "nyc ava --serial"
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-register"
],
"inherit": true,
"verbose": true
}
}