-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "instacrypt",
"version": "1.0.1",
"description": "Tiny string encryption and comparison library with both async and sync support",
"main": "dist/index.js",
"homepage": "https://github.com/seanwlawrence/instacrypt#readme",
"bugs": {
"url": "https://github.com/seanWLawrence/instacrypt/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/seanWLawrence/instacrypt.git"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"format": "tsfmt -r",
"test": "jest",
"test:watch": "jest --watch",
"develop": "nodemon",
"build": "tsc",
"commit": "npm run build && npx git-cz",
"ci": "npm run lint && npm run test && npm publish"
},
"keywords": [
"encrypt",
"encryption",
"decrypt",
"decryption",
"crypto",
"hash",
"password"
],
"author": "Sean W. Lawrence",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.10.1",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"semantic-release": "^15.9.16",
"travis-deploy-once": "^5.0.8",
"ts-jest": "^23.10.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"cross-fetch": "^2.2.2",
"express": "^4.16.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}