This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ilib-casemapper",
"version": "1.0.1",
"main": "./lib/CaseMapper.js",
"module": "./src/CaseMapper.js",
"exports": {
".": {
"import": "./src/CaseMapper.js",
"require": "./lib/CaseMapper.js"
}
},
"description": "A locale-sensitive class to map strings to upper- or lower-case",
"keywords": [
"internationalization",
"i18n",
"localization",
"l10n",
"globalization",
"g11n",
"date",
"time",
"format",
"locale",
"translation",
"case"
],
"homepage": "https://github.com/iLib-js/ilib-casemapper",
"bugs": "https://github.com/iLib-js/ilib-casemapper/issues",
"email": "[email protected]",
"license": "Apache-2.0",
"author": {
"name": "Edwin Hoogerbeets",
"web": "http://www.translationcircle.com/",
"email": "[email protected]"
},
"contributors": [
{
"name": "Edwin Hoogerbeets",
"email": "[email protected]"
},
{
"name": "Goun Lee",
"email": "[email protected]"
}
],
"files": [
"src",
"lib",
"docs",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "[email protected]:iLib-js/ilib-casemapper.git"
},
"scripts": {
"build": "npm run build:prod",
"build:prod": "grunt babel --mode=prod",
"build:dev": "grunt babel --mode=dev",
"build:test": "npm-run-all build:dev build:pkg build:webtest",
"build:pkg": "echo '{\"type\": \"commonjs\"}' > lib/package.json",
"build:web": "webpack-cli --env dev --config webpack-test.config.js",
"dist": "npm-run-all doc build:prod build:pkg; npm pack",
"test": "npm-run-all build:dev test:all",
"test:cli": "LANG=en_US.UTF8 npm run build:dev ; node --experimental-vm-modules node_modules/.bin/jest --testEnvironment node",
"test:web": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/karma start --reporters dots --single-run",
"test:watch": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/jest --testEnvironment node --watch",
"test:all": "npm-run-all test:cli test:web",
"debug": "npm run build:dev ; node --experimental-vm-modules --inspect-brk node_modules/.bin/jest --testEnvironment node -i",
"debug:web": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/karma start --reporters dots",
"clean": "git clean -f -d src test ; rm -rf lib *.tgz",
"doc": "mkdir -p docs ; jsdoc2md -c jsdoc.json --separators --source src/* -m table > docs/CaseMapper.md",
"doc:html": "jsdoc -c jsdoc.json",
"prepare": "conditional-install"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/register": "^7.23.7",
"@babel/runtime": "^7.23.8",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.0",
"conditional-install": "^1.0.1",
"docdash": "^2.0.2",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"jsdoc": "^4.0.2",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"karma": "^6.4.2",
"karma-assert": "^1.0.1",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-webpack": "^5.0.0",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"ucd-full": "^15.1.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ilib-env": "^1.3.3",
"ilib-locale": "^1.2.2"
},
"conditionalDependencies": {
"process.versions.node < v14.0.0": {
"jest": "^26.0.0",
"babel-loader": "^8.0.0"
},
"process.versions.node >= v14.0.0": {
"jest": "^29.7.0",
"babel-loader": "^9.0.0"
}
}
}