-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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": "rest-tracking",
"version": "1.0.1",
"description": "REST desenvolvido para abstrair o pacote tracking-correios.",
"main": "dist/track.js",
"keywords": [],
"author": "Gabriel Oliveira",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gabrielboliveira/rest-tracking.git"
},
"bugs": {
"url": "https://github.com/gabrielboliveira/rest-tracking/issues"
},
"scripts": {
"test": "npm run test-unit",
"test-e2e": "mocha --require babel-register tests/e2e/*.spec.js --timeout 15000",
"test-unit": "mocha --require babel-register tests/unit/*.spec.js",
"build": "babel src --out-dir dist --copy-files",
"build-prod": "BABEL_ENV=production babel src --out-dir prod --copy-files",
"postinstall": "npm run build",
"start": "node dist/track.js",
"prod": "node prod/track.js"
},
"dependencies": {
"restify": "^4.3.0",
"tracking-correios": "^1.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.20.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babili": "^0.1.4",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^4.0.1",
"nock": "^9.0.2"
}
}