forked from mobxjs/serializr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.77 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
82
83
84
{
"name": "serializr",
"version": "2.0.2",
"description": "Serialize and deserialize complex object graphs to JSON",
"main": "lib/serializr.js",
"module": "lib/es/serializr.js",
"typings": "lib/serializr.d.ts",
"scripts": {
"test": "nyc --reporter lcov tape test/*.js",
"lint": "eslint src",
"prepare": "yarn run build && yarn run build-docs",
"build": "rollup --config",
"build-docs": "ts-node --transpile-only --project gendoc.tsconfig.json ./gendoc.tsx",
"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 -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",
"watch-docs": "nodemon -w gendoc.tsx -w src -e ts,tsx,md -x ts-node --transpile-only --project gendoc.tsconfig.json ./gendoc.tsx"
},
"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"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/tape": "^4.2.33",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.2",
"documentation": "^12.1.4",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.16.0",
"lodash.merge": "^4.6.0",
"mobx": "^2.4.1 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.3.1",
"rimraf": "^3.0.1",
"rollup": "^1.1.2",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"tape": "^4.9.2",
"ts-node": "^8.6.2",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2",
"typedoc": "^0.17.0-3",
"typescript": "^3.3.3",
"unescape": "^1.0.1"
},
"dependencies": {}
}