forked from OpenNTF/dojo-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "dojo-webpack-plugin",
"version": "3.0.4",
"author": "Chuck Dumont",
"description": "Supports using webpack with Dojo 1.x applications",
"scripts": {
"lint": "eslint . --ext .json --ext .md --ext .js",
"pretest": "npm run clean:test && npm run lint && node buildDojo/build.js node_modules/dojo/dojo.js test/js && node buildDojo/build.js node_modules/dojo/dojo.js test/js/noconfig {\\\"dojo-config-api\\\":0}",
"test": "nyc node_modules/mocha/bin/mocha",
"test:debug": "node node_modules/mocha/bin/mocha --inspect-brk",
"nopretest": "mocha",
"travis:test": "npm run -s test",
"cover": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls -v",
"clean:test": "rimraf test/js .nyc_output"
},
"dependencies": {
"loader-utils": "2.0.0",
"node-stringify": "0.2.1",
"raw-loader": "0.5.1",
"tmp": "0.0.30"
},
"peerDependencies": {
"webpack": ">=5.0.0",
"tapable": ">=2.0",
"webpack-sources": ">=2.0.0"
},
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenNTF/dojo-webpack-plugin.git"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.4",
"clone-deep": "^3.0.1",
"coveralls": "^3.0.5",
"dojo": "1.16.4",
"dojo-util": "1.16.4",
"eslint": "^7.28.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-markdown": "^1.0.2",
"fs-extra": "^4.0.2",
"mocha": "^8.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.3",
"should": "^13.2.3",
"webpack": "5.60.0",
"window": "^4.2"
},
"nyc": {
"reporter": [
"text-summary"
],
"exclude": [
"index.js",
"lib/compat.js",
"runtime/**",
"test/**",
"buildDojo/**"
]
}
}