-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nartisan",
"version": "1.1.3",
"description": "Nartisan Wrapper for Sequelize & Node Express API CLI",
"bin": {
"nartisan": "./lib/nartisan",
"nartisan-cli": "./lib/nartisan"
},
"dependencies": {
"bluebird": "^3.5.3",
"cli-color": "^1.4.0",
"fs-extra": "^7.0.1",
"inquirer": "^7.1.0",
"js-beautify": "^1.8.8",
"lodash": "^4.17.5",
"resolve": "^1.5.0",
"umzug": "^2.1.0",
"yargs": "^13.1.0",
"sequelize": "^5.21.6",
"sqlite3": "^4.0.2",
"pg": "^7.5.0",
"mysql2": "^1.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"eslint": "^5.9.0",
"expect.js": "^0.3.1",
"gulp": "^4.0.0",
"mocha": "^6.0.0",
"mysql2": "^1.6.1",
"nodeify": "^1.0.1",
"pg": "^7.5.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.21.6",
"sqlite3": "^4.0.2",
"through2": "^3.0.0"
},
"options": {
"mocha": "--require scripts/mocha-bootload.js --check-leaks --exit --timeout 30000 --colors --reporter spec"
},
"eslintIgnore": [
"test/support",
"src/assets"
],
"scripts": {
"build": "npm run build-clean && babel src --ignore src/assets/boilerplate -d lib && npm run build-bin && npm run build-assets",
"build-bin": "mv ./lib/nartisan.js ./lib/nartisan && chmod +x ./lib/nartisan",
"build-assets": "cp -R ./src/assets ./lib/",
"build-clean": "rm -rf ./lib/",
"lint": "eslint test src",
"test-raw": "mocha $npm_package_options_mocha 'test/**/*.test.js'",
"test": "npm run lint && npm run build && npm run test-raw"
},
"repository": {
"type": "git",
"url": "git://github.com/nartisan/nartisan.git"
},
"keywords": [
"cli",
"nartisan",
"nartisan-cli",
"sequelize",
"expressjs",
"express",
"mysql",
"postgres",
"nodejs",
"starter",
"boilerplate",
"Authentication",
"Autocomplete",
"Sequelize Autocomplete",
"Sequelize Caching"
],
"license": "MIT",
"homepage": "https://github.com/nartisan/nartisan",
"engines": {
"node": ">=6.0.0"
}
}