-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@mooeypoo/dom-word-replacer",
"version": "0.9.9",
"author": "Moriel Schottlender",
"license": "MIT",
"description": "A javascript library that allows replacing words in DOM documents.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mooeypoo/dom-word-replacer"
},
"keywords": [],
"jsnext:main": "dist/index.es.js",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"scripts": {
"doc": "jsdoc -c .jsdoc.json",
"demo": "node demos/run.js",
"lint": "./node_modules/eslint/bin/eslint.js src tools",
"test": "mocha --require @babel/register",
"test:watch": "mocha --require @babel/register --reporter min --watch",
"test:cover": "nyc --reporter=lcov --reporter=text-lcov npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"domino": "^2.1.6",
"jsdom": "^16.5.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"cryptiles": ">=4.1.2",
"del": "^2.2.2",
"dot-prop": ">=4.2.1",
"eslint": "^7.24.0",
"eslint-config-wikimedia": "^0.16.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsdoc": "^32.3.0",
"is-svg": ">=4.2.2",
"istanbul": "^0.4.5",
"js-yaml": ">=3.13.1",
"jsdoc": "^3.6.6",
"jsdoc-wmf-theme": "0.0.3",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"sinon": "^10.0.0"
}
}