-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·131 lines (131 loc) · 4.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "fiware-idm",
"version": "7.8.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"debug": "sudo DEBUG=idm:*,oauth2-server:* nodemon --ignore 'public/' --ignore 'views/' start",
"create_db": "./node_modules/.bin/sequelize --env database db:create",
"migrate_db": "./node_modules/.bin/sequelize --env database db:migrate",
"seed_db": "./node_modules/.bin/sequelize --env database db:seed:all",
"create_migration": "./node_modules/.bin/sequelize migration:generate --name",
"undo_migration": "./node_modules/.bin/sequelize --env database db:migrate:undo",
"undo_all_migration": "./node_modules/.bin/sequelize --env database db:migrate:undo:all",
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:single": "DEBUG=idm:*,oauth2-server:* mocha",
"test:watch": "npm run test -- -w ./lib",
"lint": "eslint . --cache",
"lint:text": "textlint 'README.md' 'roadmap.md' 'doc' 'extras/docker'",
"lint:md": "remark -f 'README.md' 'roadmap.md' 'doc' 'extras/docker'",
"prettier": "prettier --single-quote --trailing-comma es5 --write **/*.js *.js",
"prettier:text": "prettier '*.md' '**/*.md' 'extras/docker/*.md' --tab-width 4 --print-width 80 --write --prose-wrap always",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"dependencies": {
"async": "^2.6.0",
"base64-img": "^1.0.4",
"bcrypt": "^3.0.2",
"body-parser": "~1.18.2",
"bootstrap-sass": "3.3.7",
"camelcase": "^5.3.1",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.5",
"csurf": "^1.9.0",
"debug": "~2.6.3",
"ejs": "~2.5.7",
"express": "^4.16.4",
"express-force-ssl": "^0.3.2",
"express-partials": "^0.3.0",
"express-session": "^1.15.6",
"express-useragent": "^1.0.13",
"gravatar": "^1.6.0",
"http": "0.0.0",
"https": "^1.0.0",
"i18n-express": "^1.1.3",
"is-hex": "^1.1.3",
"jimp": "^0.6.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"method-override": "^2.3.9",
"mime-types": "^2.1.21",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"mysql2": "^1.4.2",
"node-sass": "^4.11.0",
"node-sass-middleware": "~0.11.0",
"nodemailer": "~4.1.0",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemailer-smtp-transport": "~2.7.4",
"oauth2-server": "git+https://github.com/ging/node-oauth2-server#master",
"pg": "^7.5.0",
"request": "^2.85.0",
"sequelize": "^4.22.0",
"sequelize-cli": "^4.0.0",
"serve-favicon": "~2.4.2",
"underscore": "^1.8.3",
"url": "^0.11.0",
"xml-crypto": "^0.10.0",
"xml-encryption": "^0.11.0",
"xml2js": "^0.4.0",
"xmlbuilder": "~2.2.0",
"xmldom": "^0.1.0"
},
"devDependencies": {
"chai": "3.5.0",
"closure-linter-wrapper": "1.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"eslint-config-tamia": "^6.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-snakecase": "0.0.1",
"husky": "^1.1.0",
"istanbul": "1.0.0-alpha.2",
"jshint": "~2.9.6",
"lint-staged": "^7.3.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "9.0.14",
"prettier": "^1.14.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"should": "8.4.0",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"textlint": "^11.0.1",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-no-dead-link": "^4.4.1",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-write-good": "^1.6.2",
"timekeeper": "0.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --parser flow --single-quote --trailing-comma es5 --write",
"eslint --fix",
"git add"
],
"*.md": [
"prettier --tab-width 4 --print-width 80 --write --prose-wrap always",
"textlint 'README.md' 'doc/*.md' 'doc/**/*.md'",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
}
}