-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@node-a-team/ts-amino",
"version": "v0.0.1-alpha.2",
"description": "javascript/typescript version amino",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint-fix": "tslint -c tslint.json -p tsconfig.json --fix",
"prettier": "find ./src -type f | xargs prettier --check",
"prettier-write": "find ./src -type f | xargs prettier --write"
},
"pre-commit": [
"lint",
"prettier"
],
"author": "Thunnini",
"license": "Apache-2.0",
"dependencies": {
"big-integer": "^1.6.43",
"buffer": "^5.2.1",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.2",
"@types/sha.js": "^2.4.0",
"mocha": "^6.1.4",
"pre-commit": "^1.2.2",
"prettier": "^1.17.1",
"ts-node": "^8.1.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.2"
}
}