-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
{
"name": "dataTest",
"version": "1.0.0",
"description": "dataTest description.",
"main": "index.js",
"repository": {
"url": "git@github.com:username/dataTest.git",
"type": "git"
},
"engines": {
"node": ">=7.5.0",
"npm": ">=4.1.2"
},
"scripts": {
"deps": "npm install",
"lint": "node_modules/.bin/gulp lint",
"doc": "node_modules/.bin/gulp doc",
"test": "node_modules/.bin/nyc --reporter=lcov --reporter=text --check-coverage --lines 80 --functions 80 --branches 80 node -r dotenv/config --harmony_async_await node_modules/.bin/ava ./**/*.test.js dotenv_config_path=./.env/testing",
"test:watch": "node -r dotenv/config --harmony_async_await node_modules/.bin/ava --watch ./**/*.test.js dotenv_config_path=./.env/testing",
"deploy": "npm install && gulp deploy"
},
"ava": {
"verbose": true
},
"author": "Becual <tecnologia@becual.com>",
"license": "PROPIETARY",
"devDependencies": {
"ava": "^0.18.2",
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"dotenv": "^4.0.0",
"gulp": "git+https://git@github.com/gulpjs/gulp.git#4.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-open": "^2.0.0",
"inquirer": "^3.0.2",
"jsdoc-strip-async-await": "^0.1.0",
"jsonfile": "^2.4.0",
"minami": "^1.1.1",
"nodegit": "^0.17.0",
"nyc": "^10.0.0",
"semver-regex": "^1.0.0"
},
"dependencies": {
"knex": "^0.12.7",
"pg": "^6.1.2",
"ramda": "^0.23.0"
}
}