-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.43 KB
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
{
"name": "@knowark/componarkjs",
"version": "1.14.3",
"author": "Knowark",
"description": "Knowark's Web Components Library",
"license": "ISC",
"type": "module",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "NODE_OPTIONS='--no-warnings' node --test --experimental-test-coverage --test-coverage-include='lib/**/*.js' --test-coverage-exclude='**/*.test.js' --import ./scripts/node-test-setup.js",
"types": "tsc -p tsconfig.json --emitDeclarationOnly false --noEmit --checkJs false",
"dev": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' webpack serve --mode development --env development",
"prod": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' webpack --mode production --env production"
},
"repository": {
"type": "git",
"url": "https://github.com/knowark/componark.git"
},
"keywords": [
"web",
"components"
],
"devDependencies": {
"@knowark/injectarkjs": "^0.10.6",
"@knowark/routarkjs": "^0.6.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jsdom": "^24.0.0",
"npm-check-updates": "^16.14.12",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"directories": {
"test": "tests"
},
"standard": {
"env": [
"node"
]
},
"imports": {
"#base/*": "./lib/base/*"
}
}