-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.39 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
53
54
55
{
"name": "tonga-js",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"watch": "tsc --watch",
"test": "jest",
"test-ci": "jest --ci --reporters=jest-junit",
"docs": "typedoc --excludeExternals",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint-fix": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"files": ["dist"],
"np": {
"yarn": false,
"contents": "dist"
},
"author": "",
"license": "ISC",
"eslint-junit": {
"suiteName": "eslint tests",
"output": "./test_reports/eslint-junit.xml"
},
"jest-junit": {
"outputDirectory": "test_reports",
"outputName": "jest-junit.xml"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-junit": "^1.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"jest-junit": "^13.0.0",
"np": "^7.5.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"typedoc": "^0.22.5",
"typedoc-plugin-missing-exports": "^0.22.3",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/node": "^16.10.3",
"lodash.set": "^4.3.2"
}
}