-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.19 KB
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
{
"name": "encryptor-node",
"version": "1.0.0",
"description": "Library for encrypting and decrypting messages using a secret key.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start-ts": "./node_modules/ts-node/dist/bin.js src/index.ts",
"test": "./node_modules/mocha/bin/mocha -r ./node_modules/ts-node/register/index.js --timeout=20000 'test/**/*.test.ts'",
"build": "rm -rf dist && tsc --project ./tsconfig.json",
"clean": "rm -rf dist",
"lint": "./node_modules/.bin/tslint --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cavillo/encryptor-node.git"
},
"keywords": [
"typescript",
"encryption"
],
"author": "cavillo",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/node": "^10.14.13",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.6.2",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.2",
"typescript": "^3.7.5"
},
"dependencies": {},
"bugs": {
"url": "https://github.com/cavillo/encryptor-node/issues"
},
"homepage": "https://github.com/cavillo/encryptor-node#readme"
}