-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "@meltwater/coerce",
"version": "0.4.1",
"description": "A simple javascript package for type checking an object",
"main": "cjs/index.js",
"module": "src/index.mjs",
"types": "./types/index.d.ts",
"scripts": {
"build": "scripts/build",
"clean": "rm -rf cjs",
"demo": "node demo/index.mjs",
"docs": "npx documentation readme src/index.mjs --section 'API Reference'",
"postversion": "scripts/postversion-checks && git push --follow-tags",
"pretest": "npm outdated && npm audit && eslint src/",
"test": "scripts/test",
"test:live": "nodemon -x 'scripts/test' -w js,json --watch src/",
"types": "npx --package=typescript tsc src/index.mjs --declaration --allowJs --emitDeclarationOnly --outDir types",
"update": "npx npm-check -uE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meltwater/coerce.git"
},
"keywords": [
"types",
"convert",
"safe"
],
"author": "Team Legion <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meltwater/coerce/issues"
},
"homepage": "https://github.com/meltwater/coerce#readme",
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@eslint/js": "9.13.0",
"eslint": "9.13.0",
"eslint-plugin-depend": "0.11.0",
"eslint-plugin-jsdoc": "50.4.3",
"globals": "15.11.0",
"jasmine": "5.4.0",
"nodemon": "3.1.7"
}
}