forked from tozny/e3db-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "e3db",
"version": "1.2.4",
"description": "JavaScript client library for E3DB",
"homepage": "https://github.com/tozny/e3db-js",
"author": {
"name": "Eric Mann",
"email": "[email protected]",
"url": "https://tozny.com"
},
"license": "proprietary",
"files": ["dist"],
"main": "dist/index.js",
"keywords": ["encryption", "encrypted-store", "api-client"],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"lint-staged": "^7.0.4",
"nsp": "^3.2.1",
"prettier": "^1.12.1"
},
"scripts": {
"prepublish": "nsp check && babel lib -d dist --ignore lib/__tests__",
"pretest": "eslint . && babel lib -d dist --ignore lib/__tests__",
"precommit": "lint-staged",
"test": "jest",
"testcov": "jest --coverage",
"build": "babel lib -d dist --ignore lib/__tests__",
"profile": "jest profile.test"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"max-params": ["error", 9],
"no-prototype-builtins": ["off"],
"no-await-in-loop": ["off"],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
},
"repository": "https://github.com/tozny/e3db-js",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"babel-runtime": "^6.26",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2",
"libsodium-wrappers": "^0.7.3"
}
}