-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 843 Bytes
/
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
{
"name": "session-node-lib",
"version": "1.0.1",
"main": "dist/index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:serj026/session-node-lib.git"
},
"keywords": [],
"author": "Serhii Franchuk",
"scripts": {
"build": "npm run clean && npm run tslint && ./node_modules/typescript/bin/tsc -p .",
"clean": "./node_modules/rimraf/bin.js dist",
"tslint": "./node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json",
"build-win": "npm run clean-win && npm run tslint-win && tsc -p .",
"clean-win": "rimraf dist",
"tslint-win": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"redis": "2.8.0"
},
"devDependencies": {
"typescript": "^3.1.6",
"tslint": "^5.9.1",
"rimraf": "^2.6.2",
"@types/redis": "^2.8.7"
}
}