-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (61 loc) · 1.97 KB
/
package.json
File metadata and controls
executable file
·62 lines (61 loc) · 1.97 KB
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
{
"name": "@dwtechs/checkard",
"version": "3.6.0",
"description": "Open source dynamic type checking library for Javascript, Typescript and Node.js to test if a given variable is what it is supposed to be.",
"keywords": [
"type checking",
"type checker"
],
"homepage": "https://github.com/DWTechs/Checkard.js",
"main": "dist/ch",
"types": "dist/ch",
"repository": {
"type": "git",
"url": "https://github.com/DWTechs/Checkard.js"
},
"bugs": {
"url": "https://github.com/DWTechs/Checkard.js/issues",
"email": ""
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"email": "http://www.lcluber.com/contact",
"url": "http://www.lcluber.com"
},
"deprecationNotes": {
"isValidPassword": "Deprecated in v3.6.0, will be removed in v4.0.0. Use @dwtechs/passken validation function instead."
},
"contributors": [],
"scripts": {
"start": "",
"prebuild": "npm install",
"build": "node ./scripts/clear.cjs && tsc -p tsconfig.lib.json && npm run rollup && npm run uglify && node ./scripts/copy.cjs && npm run test",
"rollup:mjs": "rollup --config rollup.config.mjs",
"rollup:iife": "rollup --config rollup.config.iife.mjs",
"rollup:cjs": "rollup --config rollup.config.cjs.mjs",
"rollup": "npm run rollup:mjs && npm run rollup:iife && npm run rollup:cjs",
"uglify": "uglifyjs build/ch.iife.js --config-file uglify.config.json --output build/ch.iife.min.js",
"test": "jest --coverage && tsc -p tsconfig.test.json",
"perf": "node performance/ch.performance.js"
},
"files": [
"dist/"
],
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.0",
"0x": "5.8.0",
"benchmark": "2.1.4",
"core-js": "3.33.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"rollup": "4.24.0",
"typescript": "5.6.3",
"uglify-js": "3.19.3"
},
"dependencies": {
}
}