-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.15 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
{
"name": "fhem-dblog-rest-api",
"version": "0.1.0",
"description": "FHEM rest API for dblog",
"scripts": {
"precommit": "gulp && lint-staged && npm run test",
"gulp": "gulp",
"tsc": "tsc --p tsconfig.json",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha ./test/unit -name '*_test.js' --recursive --compilers ts:ts-node/register -R spec",
"test:integration": "mocha --use_strict --timeout 3000 --require ./test/setup.js --recursive ./test/integration",
"test:unit": "mocha --use_strict --require ./test/setup.js --recursive ./test/integration",
"cover": "istanbul cover --dir ./coverage _mocha -- --require ./test/setup.js --recursive ./test/unit",
"lint": "eslint",
"eslint": "eslint lib",
"lint-typescript": "tslint --project tsconfig.json",
"lint-staged": "lint-staged",
"check": "nsp check",
"start": "npm run gulp && node ./node_modules/nodemon/bin/nodemon.js --inspect lib/app.js",
"deploy": "npm run gulp && ./scripts/deployment.sh"
},
"lint-staged": {
"*.js": "lint",
"*.ts": "lint-typescript"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:7999/Menes1337/fhem-dblog-rest-api.git"
},
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.0",
"express": "^4.16.2",
"mysql2": "^1.5.1",
"nodemon": "^1.14.10"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/mocha": "^2.2.46",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^9.3.0",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-typescript": "^0.8.1",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.1",
"gulp-sourcemaps": "^2.6.3",
"gulp-typescript": "^4.0.0-alpha.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^6.0.0",
"mocha": "^3.2.0",
"nsp": "^3.1.0",
"process": "^0.11.0",
"standard": "^10.0.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
}
}