-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2 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
{
"name": "jsonsuperset",
"version": "1.0.1",
"description": "Extended JSON serialization supporting RegExp, Date, Error, undefined, Map, Set, and circular references",
"main": "dist/jss.cjs.js",
"module": "dist/jss.esm.mjs",
"browser": "dist/jss.min.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/jss.esm.mjs",
"require": "./dist/jss.cjs.js"
}
},
"files": [
"dist/",
"index.d.ts"
],
"scripts": {
"build": "node scripts/build.js",
"prebuild": "rm -rf dist && mkdir -p dist",
"release": "node scripts/release.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:check": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":100,\"functions\":100,\"lines\":100,\"statements\":100}}'",
"validate:jsdoc": "node .hooks/pre-commit.d/jsdoc-validator.js",
"validate:types": "node .hooks/pre-commit.d/check-typescript.js",
"validate:docs": "bash .hooks/pre-commit.d/check-docs.sh",
"validate:yoda": "node .hooks/pre-commit.d/yoda-validator.js",
"validate:all": "npm run validate:docs && npm run validate:jsdoc && npm run validate:types && npm run validate:yoda && npm run test:coverage:check",
"hooks:install": "cp .hooks/pre-commit .git/hooks/ && cp .hooks/commit-msg .git/hooks/ && cp -r .hooks/pre-commit.d .git/hooks/ && chmod +x .git/hooks/pre-commit .git/hooks/commit-msg .git/hooks/pre-commit.d/*.sh",
"prepare": "npm run hooks:install"
},
"keywords": [
"json",
"serialize",
"date",
"regexp",
"error",
"map",
"set",
"circular"
],
"author": "Brian Shannon",
"repository": {
"type": "git",
"url": "git+https://github.com/codemeasandwich/JsonSuperSet.git"
},
"bugs": {
"url": "https://github.com/codemeasandwich/JsonSuperSet/issues"
},
"homepage": "https://github.com/codemeasandwich/JsonSuperSet#readme",
"license": "ISC",
"devDependencies": {
"esbuild": "^0.24.0",
"jest": "^30.2.0"
}
}