-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "edc-client-js",
"version": "3.3.0",
"description": "Documentation javascript client for edc",
"license": "MIT",
"repository": "https://github.com/tech-advantage/edc-client-js",
"author": "TECH'advantage",
"keywords": [
"edc edc-client-js documentation"
],
"main": "dist/index.js",
"scripts": {
"start": "webpack --config ./webpack/webpack.dev.js --progress --color",
"build": "webpack --config ./webpack/webpack.prod.js",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"test": "karma start karma.conf.js",
"test-auto": "TEST_AUTO=true karma start karma.conf.js",
"edc-publish": "npm run lint && npm run test && npm run build && npm publish"
},
"pre-push": "lint",
"dependencies": {
"axios": "1.6.8",
"es6-promise": "4.2.8",
"lodash-es": "4.17.21"
},
"devDependencies": {
"@types/jasmine": "5.1.4",
"@types/lodash-es": "4.17.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/eslint-plugin-tslint": "7.0.2",
"@typescript-eslint/parser": "7.4.0",
"clean-webpack-plugin": "4.0.0",
"eslint": "8.57.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-jasmine": "5.1.0",
"karma-sourcemap-loader": "0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "5.0.1",
"pre-push": "0.1.4",
"ts-loader": "9.5.1",
"tslint": "6.1.3",
"typescript": "4.8.4",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.10.0"
},
"engines": {
"node": ">=14.0.0"
}
}