-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "node-checkr",
"version": "0.0.6",
"description": "API wrapper for checkr.io",
"main": "build/index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon examples/index.js --exec babel-node",
"build": "rm -fR build/; babel src/ -d build/",
"start": "node --require 'babel-polyfill' build/index.js",
"lint": "eslint src/",
"test": "NODE_ENV=test cross-env nyc mocha ./tests/*.test.js",
"prepublish": "npm run build"
},
"repository": "https://github.com/revdapp/node-checkr.git",
"author": "Francisco Sales",
"dependencies": {
"axios": "^0.16.2",
"dotenv": "^4.0.0",
"joi": "^10.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.18.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cross-env": "^4.0.0",
"eslint": "^3.10.2",
"eslint-config-esnext": "^1.6.0",
"eslint-config-recommended": "^1.5.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"http-status": "^1.0.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"supertest": "^3.0.0"
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"sourceMap": false,
"instrument": false
}
}