-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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": "lean-intl",
"version": "4.2.2",
"description": "Lean Polyfill for the ECMA-402 Intl API (except collation and non gregorian calendars)",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"async": "^2.6.2",
"babel-preset-edge": "^5.2.0",
"cldr-core": "35.0.0",
"cldr-dates-full": "35.0.0",
"cldr-numbers-full": "35.0.0",
"eslint": "^5.16.0",
"eslint-config-readable": "^2.3.2",
"esm": "^3.2.22",
"glob": "^7.1.3",
"grunt": "^1.0.4",
"grunt-cli": "~1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-curl": "^2.5.1",
"grunt-zip": "^0.18.2",
"mkdirp": "^0.5.1",
"preppy": "^7.11.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"uglify-es": "^3.3.9"
},
"dependencies": {
"core-js": "^3.0.1",
"make-plural": "^4.3.0"
},
"scripts": {
"update": "grunt update-test262",
"clean": "rimraf dist/ lib/",
"data": "node -r esm scripts/build-data",
"release": "release-it --github.release --npm.publish --non-interactive",
"release:minor": "release-it --github.release --npm.publish --non-interactive --increment minor",
"release:major": "release-it --github.release --npm.publish --non-interactive --increment major",
"test": "npm run prepack && cd tests && node sanity.js && node disableregexprestore.js && rollup --config rollup.config.js && node noderunner.js",
"prepack": "npm run clean && preppy"
},
"repository": {
"type": "git",
"url": "https://github.com/sebastian-software/lean-intl"
},
"keywords": [
"intl",
"i18n",
"internationalization",
"ecma402",
"polyfill"
],
"author": {
"name": "Sebastian Software",
"email": "s.werner@sebastian-software.de",
"url": "https://www.sebastian-software.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sebastian-software/lean-intl/issues"
}
}