-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "ncrypt-js",
"version": "2.1.2",
"description": "a light weight javascript data encryption and decryption library",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"prepare": "yarn build",
"build": "yarn clean;tsc --outDir dist",
"test": "cross-env TS_NODE_FILES=true nyc mocha --exit --require ts-node/register --colors test/**/*.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajimae/ncrypt-js.git"
},
"keywords": [
"ncrypt-js",
"crypto",
"cipher",
"decrypt",
"encrypt",
"typescript",
"ecmascript5",
"encryption",
"cryptojs",
"cryptography",
"decryption",
"javascript-library"
],
"author": "ajimae",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajimae/ncrypt-js/issues"
},
"homepage": "https://github.com/ajimae/ncrypt-js#readme",
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.29",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"cross-env": "^5.2.1",
"mocha": "^6.2.2",
"mocha-istanbul": "^0.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"ts-node": "^8.6.2",
"typescript": "3.8.3"
},
"files": [
"dist",
"package.json",
"LICENSE"
]
}