-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"name": "@dcspark/cip5-js",
"version": "1.0.0",
"description": "A Javascript library reference implementation for CIP5",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run clean && npm run generate && tsc && npm run flowgen && npm run copy-misc",
"generate": "ts-node --project tsconfig.generate.json generate.ts",
"clean": "rm -rf ./dist/ && rm -f index.ts",
"copy-misc": "cp package.json dist/ && cp README.md dist/",
"eslint": "eslint ./generate.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 OR MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dcSpark/cip5-js.git"
},
"author": "dcspark",
"homepage": "https://github.com/dcSpark/cip5-js#readme",
"dependencies": {},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"flowgen": "1.14.1",
"husky": "5.1.1",
"jest": "27.2.0",
"prettier": "^2.4.0",
"ts-jest": "27.0.5",
"ts-node": "^10.7.0",
"tslint": "6.1.3",
"typescript": "4.4.3"
}
}