-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
95 lines (95 loc) · 2.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cldrjs",
"version": "1.0.0-alpha.0",
"description": "Simple CLDR traverser",
"keywords": [
"utility",
"globalization",
"internationalization",
"multilingualization",
"localization",
"g11n",
"i18n",
"m17n",
"L10n",
"localize",
"locale",
"cldr",
"json",
"inheritance",
"compiler"
],
"main": "dist/node_main.js",
"browser": "dist-esm/index.js",
"files": [
"CHANGELOG.md",
"DCO.md",
"dist/",
"doc/",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/rxaviers/cldrjs.git"
},
"readmeFilename": "README.md",
"author": {
"name": "Rafael Xavier de Souza",
"email": "rxaviers@gmail.com",
"url": "http://rafael.xavier.blog.br"
},
"scripts": {
"build": "npm run lint && npm run test:unit && npm run build:all && npm run test:functional && npm run validate",
"build:all": "npm run build:dist && npm run build:esm",
"validate": "npm run compare_size && npm run dco",
"lint": "eslint src test build",
"lint:fix": "eslint --fix src test build",
"prettier": "prettier --write '{src,test,build}/**/*.js'",
"compare_size": "node build/compare-size.js",
"dco": "node build/dco.js",
"test:unit": "export NODE_ENV=test && mocha --require @babel/register --require chai/register-expect './test/unit/**/*.js'",
"test:functional": "export NODE_ENV=test && mocha --require @babel/register --require chai/register-expect './test/functional/*.js'",
"build:dist": "webpack --mode production --config webpack.config.js",
"build:esm": "export NODE_ENV=production && babel src --out-dir dist-esm --delete-dir-on-start --ignore src/build/node_main.js --plugins $PWD/wrap-validate-with-env-check.js"
},
"cldr-data-urls-filter": "(cldr-core|cldr-numbers-modern|cldr-dates-modern)",
"dco": {
"exceptionalAuthors": {
"rxaviers@gmail.com": "Rafael Xavier de Souza"
}
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rxaviers/cldrjs/blob/master/LICENSE-MIT"
}
],
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/register": "^7.0.0-rc.1",
"@swissquote/babel-preset-swissquote": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"cldr-data": "^33.0.0",
"copy-webpack-plugin": "^4.5.2",
"debug": "^4.0.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"gzip-size": "^5.0.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"stats-webpack-plugin": "^0.7.0",
"string-replace-webpack-plugin": "^0.1.3",
"text-table": "^0.2.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"dco": "^1.1.0",
"wolfy87-eventemitter": "^5.2.5"
}
}