forked from Open-Attestation/token-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.6 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.6 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@govtechsg/token-registry",
"version": "1.0.0",
"files": [
"dist",
"src",
"scripts"
],
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": "git@github.com:Open-Attestation/token-registry.git",
"author": "GovTech",
"license": "Apache-2.0",
"scripts": {
"build:sol": "hardhat compile",
"build:js:copy-src": "babel src -d dist --ignore src/**/*.spec.ts,src/**/*.test.ts -x .js,.ts,.tsx --copy-files",
"build:js": "tsc --emitDeclarationOnly && npm run build:js:copy-src",
"build:js:copy-types": "mkdir -p ./dist/types && cp ./src/contracts/*.d.ts ./dist/types/contracts",
"build": "npm run clean:build && npm run build:sol && npm run build:js && npm run build:js:copy-types",
"clean:build": "hardhat clean && rm -rf ./dist && rm -rf ./src/contracts",
"commit": "git-cz",
"commit:retry": "npm run commit -- --retry",
"lint:js": "eslint test src --ext .js --ext .ts",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:sol": "./node_modules/.bin/solhint contracts/**/*.sol",
"lint:sol:fix": "npm run lint:sol -- --fix",
"lint": "npm run lint:sol && npm run lint:js",
"lint:fix": "npm run lint:sol:fix && npm run lint:js:fix",
"test:sol": "hardhat test",
"test:js": "jest --testPathPattern=src",
"test": "npm run test:sol && npm run test:js",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"precoverage": "hardhat clean",
"coverage": "hardhat coverage"
},
"jest": {
"globalSetup": "./jest/setup.ts",
"globalTeardown": "./jest/teardown.ts",
"testPathIgnorePatterns": [
"/node_modules",
"/build",
"/dist"
]
},
"peerDependencies": {
"ethers": ">=5.0.8"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/prompt": "^12.1.1",
"@ls-age/commitlint-circle": "1.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^26.6.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.4",
"dotenv": "^8.2.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"git-cz": "^4.7.6",
"hardhat": "^2.6.4",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-watcher": "^2.1.1",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"semantic-release": "^17.4.2",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"solium": "^1.2.5",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"publishConfig": {
"access": "public"
}
}