-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.65 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
56
57
58
59
60
{
"name": "@verndale/core",
"version": "2.1.1",
"description": "Collection of JavaScript helpers meant to be used for core development.",
"license": "MIT",
"main": "lib/index.js",
"author": {
"name": "Joe Fusco",
"email": "joe.fusco@verndale.com"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/verndale/core.git"
},
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"preversion": "rimraf ./docs ./lib && npm test",
"version": "npm run build && git add .",
"postversion": "git push origin master --tags",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/*.ts",
"test": "tsc --noEmit && npm run lint && karma start --single-run --no-auto-watch",
"build": "documentation build src/* -f html -g true -o docs && tsc"
},
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@types/jasmine-jquery": "^1.5.34",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"documentation": "^14.0.0",
"eslint": "^8.26.0",
"jasmine-core": "^4.4.0",
"jquery": "^3.6.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "^0.0.34",
"karma-typescript": "^5.5.3",
"puppeteer": "^19.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"keywords": [
"import",
"webpack",
"chunking",
"code-splitting",
"es6",
"dynamic-import"
],
"dependencies": {
"jasmine-jquery": "^2.1.1"
}
}