-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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": "power-crypt",
"version": "0.2.2",
"description": "",
"repository": "https://github.com/phenyl-js/power-crypt",
"license": "Apache-2.0",
"author": "Shin Suzuki <[email protected]>",
"contributors": [
"Jesse Katsumata <[email protected]>",
"Daiki Ihara <[email protected]>"
],
"files": [
"lib",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"prepare": "yarn clean && yarn build",
"build": "tsc --declaration",
"ci-test": "nyc mocha --require ts-node/register 'test/**/*.ts' --color always",
"test": "mocha --require ts-node/register 'test/**/*.ts' --color always",
"type-check": "tsc --noEmit"
},
"dependencies": {
"buffer": "^5.1.0",
"sha.js": "^2.4.8"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/power-assert": "^1.5.0",
"@types/sha.js": "^2.4.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"power-assert": "^1.4.4",
"prettier": "^1.17.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
}
}