forked from yahoo/serialize-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "@namecheap/serialize-javascript",
"version": "0.0.0",
"description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.",
"main": "./lib/index.js",
"browser": "./lib/browser.js",
"types": "./lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"benchmark": "npm run build && node -v && node test/benchmark/serialize.js",
"test": "nyc mocha './{,!(node_modules)/**}/*.spec.ts' --forbid-only --forbid-pending --reporter=\"mochawesome\" --reporter-options=\"reportDir=./test-results/mocha/,reportFilename=index.html\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/serialize-javascript.git"
},
"keywords": [
"serialize",
"serialization",
"javascript",
"js",
"json"
],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/namecheap/serialize-javascript/issues"
},
"homepage": "https://github.com/namecheap/serialize-javascript",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/mocha": "^10.0.9",
"@types/sinon": "^17.0.3",
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"mochawesome": "^7.1.3",
"nyc": "^17.1.0",
"semantic-release": "^24.1.3",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}