This repository was archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 KB
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": "node-mpw",
"version": "0.2.0",
"description": "Implementation of Master Password for nodejs and browser",
"main": "./dist/index.js",
"typings": "./index.d.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"commit": "git-cz",
"prepublish": "npm run build",
"test": "npm run build && mocha",
"tslint": "tslint --config tslint.json src/**/*.ts index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blvdgroup/node-mpw.git"
},
"keywords": [
"masterpasswordapp",
"master-password",
"password"
],
"author": "Resi Respati <resir014@blvd.space>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blvdgroup/node-mpw/issues"
},
"homepage": "https://github.com/blvdgroup/node-mpw#readme",
"devDependencies": {
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"tslint": "^4.5.1",
"tslint-eslint-rules": "^3.4.0",
"tslint-microsoft-contrib": "^4.0.0",
"typescript": "^2.2.1"
},
"dependencies": {
"scrypt": "^6.0.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}