-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "json-urley",
"version": "0.0.0",
"description": "Json Urley provides a tight standard for converting json objects to and from URL parameters.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/src"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.10",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"node-static": "^0.7.11",
"nyc": "^15.1.0",
"prettier": "^3.0.1",
"sinon": "^15.2.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "tsc",
"test": "mocha dist",
"testCoverage": "nyc --reporter=html --reporter=text mocha dist",
"lint": "eslint src --ext .ts",
"buildBrowserTest": "webpack",
"browserTest": "node scripts/browserTest",
"prettier": "npx prettier src --write",
"prettierCheck": "npx prettier src --check",
"githubUpdateVersion": "node scripts/githubUpdateVersion"
}
}