-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "@emurgo/cip4-js",
"version": "1.0.7",
"description": "A Javascript library reference implementation for CIP4",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run clean && tsc && npm run flowgen && npm run copy-misc",
"clean": "rm -rf ./dist/",
"copy-misc": "cp package.json dist/ && cp README.md dist/",
"eslint": "eslint ./index.ts ./tests/index.test.ts",
"flowgen": "flowgen ./dist/index.d.ts --no-inexact --add-flow-header -o dist/index.js.flow",
"npm-publish": "npm run verify && npm run build && cd dist && npm publish --access public && cd ..",
"test": "tsc --noEmit && jest",
"verify": "npm run eslint && npm run test"
},
"husky": {
"hooks": {
"pre-push": "npm run verify"
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Emurgo/CIP4.git"
},
"author": "EMURGO",
"homepage": "https://github.com/Emurgo/CIP4#readme",
"dependencies": {
"blake2b": "2.1.3",
"buffer-crc32": "0.2.13",
"fnv-plus": "1.3.1"
},
"devDependencies": {
"@types/buffer-crc32": "0.2.0",
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"eslint": "7.0.0",
"flowgen": "1.10.0",
"husky": "4.2.5",
"jest": "25.5.4",
"prettier": "2.0.5",
"ts-jest": "25.5.0",
"tslint": "6.1.2",
"typescript": "3.8.3"
}
}