-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.55 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
{
"name": "environmentalist.js",
"version": "1.2.0",
"description": "A simple Node.js app to be used with Slack for managing environment occupancy.",
"license": "MITNFA",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "./dist/index.js"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^8.0.3",
"@types/node": "^10.12.3",
"@types/node-localstorage": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"mocha": "^8.1.3",
"nconf": "^0.10.0",
"ts-node": "^7.0.1",
"typescript": "^2.7.2"
},
"dependencies": {
"@types/express": "^4.16.0",
"axios": "^0.19.0",
"body-parser": "^1.18.2",
"express": "^4.16.4",
"install": "^0.12.2",
"moment": "^2.22.1",
"node-localstorage": "^1.3.1",
"npm": "^6.14.8"
},
"scripts": {
"compile": "npm run clean && npm run ts && npm run permissions",
"permissions": "chmod +x ./dist/index.js",
"clean": "rm -r -f ./dist",
"ts": "node_modules/.bin/tsc",
"test": "node_modules/mocha/bin/mocha --timeout 10000 --retries 1 -r ts-node/register test/**/*test.ts",
"lint": "./node_modules/.bin/eslint src/**/*.ts"
},
"author": "Igor Balos",
"repository": {
"type": "git",
"url": "git+https://github.com/ibalosh/environmentalist.git"
},
"bugs": {
"url": "https://github.com/ibalosh/environmentalist/issues"
},
"homepage": "https://github.com/ibalosh/environmentalist#readme"
}