-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
81 lines (81 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "serializr",
"version": "3.0.2",
"description": "Serialize and deserialize complex object graphs to JSON",
"main": "lib/serializr.umd.js",
"module": "lib/serializr.es.js",
"typings": "lib/serializr.d.ts",
"scripts": {
"test": "yarn build-test && nyc --reporter lcov tape test/*.js",
"lint": "eslint src --ext .ts",
"prepare": "yarn run build && yarn run build-docs",
"build": "rollup --config",
"build-docs": "typedoc",
"build-test": "yarn run build-test-babel && yarn run build-test-ts",
"build-test-ts": "tsc -p test/typescript",
"build-test-babel": "babel test/babel/babel.js test/babel/mobx-babel.js -o test/babel/babel-compiled.js",
"prettier": "prettier --write {src,test}/**/*.{ts,js}",
"clean": "rimraf lib test/typescript/ts.js test/babel/babel-compiled.js",
"postversion": "git push && git push --tags",
"preversion": "yarn build && yarn build-test && yarn test && git diff --exit-code",
"watch-docs": "typedoc --watch"
},
"nyc": {
"all": true,
"include": [
"src/**/*",
"lib/**/*"
]
},
"keywords": [
"serialize",
"deserialize",
"graph",
"json",
"mobx"
],
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/serializr.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/serializr/issues"
},
"files": [
"lib",
"serializr.d.ts",
"src"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@rollup/plugin-typescript": "^8.1.0",
"@types/tape": "^4.2.33",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.2",
"documentation": "^12.1.4",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.16.0",
"lodash.merge": "^4.6.0",
"mobx": "^6.6.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.1",
"rollup": "^2.77.3",
"rollup-plugin-terser": "^7.0.2",
"tape": "^4.9.2",
"tslib": "^2.4.0",
"typedoc": "0.23.10",
"typescript": "^4.1.3",
"unescape": "^1.0.1"
},
"packageManager": "[email protected]"
}