-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@debitoor/cipher",
"version": "1.1.2",
"description": "Encrypt/decrypt data",
"readmeFilename": "README.md",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "istanbul cover _mocha",
"coveralls": "coveralls < ./coverage/lcov.info || echo 'problem with reporting to coveralls'",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debitoor/cipher.git"
},
"keywords": [
"encrypt",
"decrypt"
],
"author": "Debitoor",
"license": "MIT",
"bugs": {
"url": "https://github.com/debitoor/cipher/issues"
},
"homepage": "https://github.com/debitoor/cipher#readme",
"devDependencies": {
"@debitoor/eslint-config-debitoor": "1.7.0",
"@debitoor/mocha-strict-dependencies": "1.1.0",
"chai": "4.1.2",
"chai-subset": "1.6.0",
"coveralls": "3.0.0",
"istanbul": "0.4.5",
"mocha": "4.0.1",
"mocha-eslint": "4.1.0"
},
"files": [
"index.js",
"index.d.ts"
]
}