-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "globalize-webpack-plugin",
"version": "3.0.0",
"description": "Globalize.js webpack plugin",
"main": "index.js",
"files": [
"*.js",
"DCO.md"
],
"scripts": {
"test": "mocha test",
"test:debug": "node ./node_modules/.bin/mocha --inspect --debug-brk test",
"pretest": "npm run lint",
"lint": "eslint *js test"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git@github.com:rxaviers/globalize-webpack-plugin.git"
},
"keywords": [
"globalize",
"webpack",
"plugin"
],
"author": "Rafael Xavier de Souza",
"contributors": [
"James Bellenger <james@bellenger.org>",
"Frédéric Miserey <frederic@none.net>",
"Ghislain Seguin <gseguin@google.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rxaviers/globalize-webpack-plugin/issues"
},
"homepage": "https://github.com/rxaviers/globalize-webpack-plugin",
"dependencies": {
"cldr-data": ">=25",
"globalize-compiler": "^1.0.0",
"iana-tz-data": ">=2017.0.0",
"skip-amd-webpack-plugin": "^1.0.0",
"tapable": "1.0.0"
},
"peerDependencies": {
"cldr-data": ">=25",
"globalize": "^1.3.0",
"iana-tz-data": ">=2017.0.0",
"webpack": "^4.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"cldr-data": "^31.0.2",
"eslint": "^6.5.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-sort-requires": "^2.1.0",
"globalize": "^1.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.3.0",
"rimraf": "^2.6.1",
"webpack": "^4.0.0"
},
"cldr-data-urls-filter": "(core|dates|numbers|units)"
}