-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.52 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
{
"name": "node-secure-password",
"version": "0.2.1",
"description": "A simple library for correctly storing and handling passwords on the server in a secure manner",
"author": "Lukas Kuehnert / treylon",
"repository": {
"type": "git",
"url": "https://github.com/treylon/node-secure-password"
},
"keywords": [
"node",
"password",
"hash",
"hashing",
"secure"
],
"license": "ISC",
"main": "dist/lib/main.js",
"types": "dist/lib/main.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint 'test/*.ts lib/*.ts'",
"build": "tsc",
"build:watch": "npm run build -- -w",
"test": "mocha dist/test",
"test:watch": "npm run test -- -w",
"prepare-publish": "npm run lint && npm run clean && npm run build && npm run test",
"publish-patch": "npm run prepare-publish && npm version patch && npm publish && git push origin master",
"publish-minor": "npm run prepare-publish && npm version minor && npm publish && git push origin master",
"publish-major": "npm run prepare-publish && npm version major && npm publish && git push origin master",
"develop": "concurrently \"npm run build:watch\" \"npm run test:watch\" \"nodemon dist/lib/main.js\""
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.34",
"@types/node": "^6.0.52",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.3",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"tslint": "^4.1.1",
"typescript": "^2.1.4"
}
}