-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "@dustfoundation/timestream-kit",
"version": "0.2.0",
"description": "Timestream Kit for fast development",
"repository": "https://github.com/DustFoundation/timestream-kit",
"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": "^2.5.0",
"@dustfoundation/prettier-config": "^2.5.0",
"@dustfoundation/ts-config": "^2.5.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.33",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16"
}
}