-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
61
62
{
"name": "snap-checker",
"version": "1.5.2",
"description": "Synchronized Network Accounting Protocol",
"files": [
"src",
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build-lib": "babel src -d lib --source-maps --extensions \".ts\"",
"build-types": "tsc",
"build": "npm run build-lib && npm run build-types",
"coverage": "jest --collect-coverage",
"dev": "ts-node-dev src/examples/basic",
"jest": "jest",
"lint": "eslint src/ test/ --ext .ts",
"postversion": "git push && git push --tags && npm publish",
"prettier": "prettier --write \"{src,test,__mocks__}/**/*.ts\"",
"preversion": "npm test",
"test": "npm run build && npm run lint && npm run jest",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ledgerloops/snap-checker.git"
},
"author": "Michiel B. de Jong",
"license": "MIT",
"bugs": {
"url": "https://github.com/ledgerloops/snap-checker/issues"
},
"homepage": "https://github.com/ledgerloops/snap-checker#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"hashlocks": "^1.0.0"
}
}