-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 894 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 894 Bytes
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
{
"name": "@dustfoundation/utils",
"version": "3.1.1",
"description": "Shared Utils for Dust Foundation projects",
"repository": "https://github.com/DustFoundation/utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha -r ts-node/register 'src/**/*.test.ts'"
},
"devDependencies": {
"@dustfoundation/eslint-config": "^3.1.1",
"@dustfoundation/prettier-config": "^3.1.1",
"@dustfoundation/ts-config": "^3.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.9",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
}
}