-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 945 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 945 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
{
"name": "@conet-project/CHANGE-ME",
"version": "0.1.0",
"license": "UNLICENSED",
"files": [
"./build"
],
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "jest",
"build": "tsc --project ./tsconfig.build.json",
"clean": "rm -rf ./node_modules ./build"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}