This repository has been archived by the owner on Sep 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
{
"name": "feathers-swagger-sequelize",
"version": "0.0.2",
"description": "Autogenerate swagger documentation from sequelize anotations",
"main": "dist/index.js",
"repository": "https://github.com/Nvveen/feathers-swagger-sequelize",
"author": {
"name": "Neal van Veen",
"email": "nealvanveen@gmail.com"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"bugs": {
"url": "https://github.com/Nvveen/feathers-swagger-sequelize/issues"
},
"engine": {
"node": ">= 6"
},
"scripts": {
"test": "mocha __tests__/ --recursive --require babel-register",
"test:watch": "nodemon -w lib/ -w __tests__/ --exec npm run test",
"build": "babel -d dist/ lib/",
"prepare": "npm run build"
},
"devDependencies": {
"@feathersjs/express": "^1.1.2",
"@feathersjs/feathers": "^3.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"feathers-sequelize": "^3.0.0",
"feathers-swagger": "^0.6.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^5.0.0",
"nodemon": "^1.14.11",
"prettier": "^1.10.2",
"sequelize": "^4.32.2",
"sqlite3": "^3.1.13"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
},
"extends": ["standard", "prettier", "prettier/standard"],
"plugins": ["prettier", "standard"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": false
}
]
},
"parser": "babel-eslint"
},
"babel": {
"presets": ["env"]
}
}