-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "better-json-serializer",
"version": "3.0.0",
"description": "A tool that enables to use non-standard types in JSON (such as Sets, Maps, etc)",
"type": "module",
"main": "./dist/index",
"types": "./dist/index",
"files": [
"./dist/",
"./src/"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha -r ts-node/register './tests/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paullouismas/better-json-serializer.git"
},
"author": "Mas Paul-Louis",
"license": "MIT",
"bugs": {
"url": "https://github.com/paullouismas/better-json-serializer/issues"
},
"homepage": "https://github.com/paullouismas/better-json-serializer#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}