-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "cryptorjs",
"version": "3.0.0",
"description": "Encrypt and decrypt string, number and object using a key",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"postversion": "npm publish && git push && git push --tags",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"mocha:test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/cryptor.git"
},
"keywords": [
"encrypt",
"decrypt",
"string",
"crypto",
"hash",
"password",
"passkey",
"algorithm",
"secret",
"json",
"object"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabioricali/cryptor/issues"
},
"homepage": "https://github.com/fabioricali/cryptor#readme",
"devDependencies": {
"bejs": "^1.11.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"depreca": "^1.1.1"
}
}