-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "fast-json",
"description": "A lightning fast on the fly JSON parser",
"version": "3.0.0",
"author": "Alejandro Santiago Nieto",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:cover": "npm test -- --coverage",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"check": "npm test && npm run lint",
"prepublishOnly": "npm run check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alemures/fast-json.git"
}
}