-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.96 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": "docile",
"version": "1.2.0",
"description": "Docile stores information, such as objects, about DOM nodes and retrieves it",
"main": "dist/docile.node.js",
"repository": "https://github.com/russellsteadman/docile.git",
"homepage": "https://docile.js.org/",
"author": "Russell Steadman <steadman.21@osu.edu> (https://www.russellsteadman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/russellsteadman/docile/issues",
"email": "steadman.21@osu.edu"
},
"private": false,
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.6",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"core-js": "^3.15.2",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"fork-ts-checker-webpack-plugin": "^5.0.5",
"jest": "^27.0.6",
"jest-environment-puppeteer": "^5.0.4",
"puppeteer": "^10.1.0",
"regenerator-runtime": "^0.13.7",
"ts-loader": "^8.3.0",
"typescript": "^4.3.5",
"webpack": "^4.43.0",
"webpack-cli": "^4.7.2"
},
"keywords": [
"docile",
"dom",
"element",
"node",
"browser",
"data",
"attribute"
],
"scripts": {
"build": "webpack --config config/webpack.config.js && webpack --config config/webpack.config.node.js && tsc --project tsconfig.json -d true --emitDeclarationOnly --declarationDir dist && node config/copy.js",
"test": "jest"
},
"jest": {
"clearMocks": true,
"collectCoverage": false,
"globalSetup": "jest-environment-puppeteer/setup",
"globalTeardown": "jest-environment-puppeteer/teardown",
"testEnvironment": "jest-environment-puppeteer"
}
}