-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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": "@abdoulkader/dom-pp-test",
"version": "0.0.1",
"description": "A traceability library for DOM trees",
"main": "index.mjs",
"type": "module",
"scripts": {
"test": "mocha --timeout 5000",
"coverage": "NODE_ENV=test c8 mocha test/*.test.js",
"doc": "jsdoc -c jsdoc.conf.json",
"lint": "eslint --format html index.mjs modules/*.mjs > eslint.html",
"build:umd": "webpack --config webpack.config.cjs --output-filename index.umd.js --mode development",
"build:umd.min": "webpack --config webpack.config.cjs --output-filename index.umd.min.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liflab/dom-pp.git"
},
"author": "Sylvain Hallé, Amadou Ba, Papa Alioune Fall, Émile Perron",
"license": "MIT",
"bugs": {
"url": "https://github.com/liflab/dom-pp/issues"
},
"homepage": "https://github.com/liflab/dom-pp",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/register": "^7.15.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"c8": "^7.9.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"fs": "0.0.1-security",
"global-jsdom": "7.0.0",
"jsdoc": "^3.6.7",
"jsdoc-class-hierarchy": "^1.1.2",
"jsdom": "16.4.0",
"jsdom-global": "^3.0.2",
"json-loader": "^0.5.7",
"puppeteer": "^8.0.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"blockly": "^6.20210701.0",
"chai": "^4.3.4",
"chai-colors": "^1.0.1",
"chai-dom": "^1.10.0",
"data-tree": "^1.2.4",
"jest": "^26.6.3",
"mocha": "^8.4.0"
},
"directories": {
"doc": "docs",
"test": "test"
}
}