-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "mixvel-ndc-client",
"version": "1.4.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"run": "ts-node src/index.ts --log-error",
"build": "tsc",
"lint": "eslint",
"start": "npm run build && node build/index.js",
"test": "./node_modules/.bin/_mocha 'test/**/*.test.ts'",
"precommit": "npm run lint && npm run format && npm run build && npm run test",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "husky install"
},
"keywords": [],
"author": "chriss",
"license": "ISC",
"devDependencies": {
"@testdeck/mocha": "^0.2.0",
"@types/chai": "^4.2.22",
"@types/luxon": "^2.0.8",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.4",
"eslint": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"dependencies": {
"class-validator": "^0.14.0",
"luxon": "^2.5.2",
"ndc-json2xml": "^0.2.3",
"ndc-xml2json": "^0.2.5",
"uuid": "^8.3.2",
"xml2js": "^0.6.2"
}
}