-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "clortho",
"version": "1.2.2",
"description": "friendly, OS-appropriate password handling for node scripts",
"main": "lib/index.js",
"scripts": {
"babel": "babel src -d lib",
"lint": "semistandard **/*.js",
"tape": "tape ./test/**/*.js",
"test": "npm run lint && npm run babel && npm run tape",
"preversion": "npm run test",
"version": "git add -A ."
},
"semistandard": {
"parser": "babel-eslint",
"ignore": "lib/**"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zetlen/clortho.git"
},
"keywords": [
"keychain",
"password"
],
"author": "zetlen",
"license": "ISC",
"bugs": {
"url": "https://github.com/zetlen/clortho/issues"
},
"homepage": "https://github.com/zetlen/clortho#readme",
"dependencies": {
"inquirer": "^0.11.0",
"js-string-escape": "^1.0.0",
"keychain": "^1.0.0",
"which": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"semistandard": "*",
"tape": "^4.2.2"
},
"engines": {
"node": "^4.0.0"
}
}