-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "bdc",
"description": "Ben's DOM Clobberer",
"license": "MIT",
"keywords": [],
"version": "1.1.0",
"author": "Ben Mather <bwhmather@bwhmather.com> (bwhmather.com)",
"homepage": "https://github.com/bwhmather/bdc-js",
"repository": {
"type": "git",
"url": "git://github.com/bwhmather/bdc-js.git"
},
"main": "dist/bdc.umd.js",
"module": "dist/bdc.mjs",
"jsnext:main": "dist/bdc.mjs",
"types": "dist/index.d.ts",
"devDependencies": {
"@playwright/test": "^1.26.1",
"@rollup/plugin-typescript": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"playwright": "^1.26.1",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.4"
},
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "playwright test",
"eslint": "eslint src/*.ts",
"prettier": "prettier --check src tests",
"prettier:fix": "prettier --write src tests",
"prepack": "npm run build"
},
"files": [
"dist/bdc.js",
"dist/bdc.js.map",
"dist/bdc.min.js",
"dist/bdc.min.js.map",
"dist/bdc.mjs",
"dist/bdc.mjs.map",
"dist/bdc.umd.js",
"dist/bdc.umd.js.map",
"dist/index.d.ts"
]
}