-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
70
{
"name": "domodule",
"version": "8.2.1",
"description": "Class-based JavaScript modules accessible via the DOM.",
"keywords": [
"module",
"browser",
"javascript",
"typescript"
],
"repository": "https://github.com/firstandthird/domodule",
"license": "MIT",
"author": "First+Third",
"main": "dist/domodule.js",
"module": "dist/domodule.module.js",
"source": "lib/domodule.ts",
"typings": "dist/domodule.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && microbundle && npm run docgen:local",
"dev": "microbundle watch",
"docgen": "api-extractor run && api-documenter markdown --input-folder ./temp --output-folder ./docs",
"docgen:local": "api-extractor run --local --verbose",
"lint": "npm run build && eslint ./lib ./test",
"prepublishOnly": "npm run lint",
"pretest": "npm run build",
"test": "jest"
},
"dependencies": {
"attrobj": "^3.1.0",
"aug": "^4.0.0",
"domassist": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@microsoft/api-documenter": "^7.23.38",
"@microsoft/api-extractor": "^7.35.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"eslint-config-firstandthird": "^6.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"microbundle": "^0.15.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"esmodule": "dist/domodule.modern.js",
"watch": {
"lib/*.js": [
"lint",
"test"
],
"test/*.js": [
"lint",
"test"
]
}
}