forked from pichillilorenzo/jackson-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 3.39 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "jackson-js",
"version": "1.1.0",
"description": "JavaScript object serialization and deserialization library using decorators. It supports also advanced Object concepts such as polymorphism, Object identity and cyclic objects.",
"author": {
"name": "Lorenzo Pichilli",
"email": "[email protected]",
"url": "https://github.com/pichillilorenzo"
},
"keywords": [
"jackson-json",
"json",
"jackson",
"jackson-js",
"json-serialization",
"json-deserialization",
"json-stringifier",
"json-parser",
"jackson-javascript",
"json-stringify",
"json-parse",
"json-decoder",
"json-encoder"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pichillilorenzo/jackson-js"
},
"scripts": {
"clean": "rimraf ./dist",
"clean:doc": "rimraf ./docs/latest && rimraf ./docs/$npm_package_version",
"build:doc": "npm run clean:doc && npm run build:doc:latest && npm run build:doc:current-version && node ./build-index-docs.js",
"build:doc:latest": "typedoc --out ./docs/latest ./src --readme none --excludePrivate --excludeExternals --exclude \"**/!(@types)/*+(util|index).ts\" --custom-tags-config typedoc-tags-config.json",
"build:doc:current-version": "typedoc --out ./docs/$npm_package_version ./src --name \"jackson-js $npm_package_version\" --readme none --excludePrivate --excludeExternals --exclude \"**/!(@types)/*+(util|index).ts\" --custom-tags-config typedoc-tags-config.json",
"build:dev": "npm run clean && ./node_modules/.bin/webpack --config webpack.dev.js",
"build:prod": "npm run clean && ./node_modules/.bin/webpack --config webpack.prod.js",
"start:node:dev": "node dist/lib.node",
"test-es5": "TS_NODE_PROJECT=tsconfig.json ava --concurrency=8 --timeout=3m --verbose",
"test-es6": "TS_NODE_PROJECT=tsconfig.es6.json ava --concurrency=8 --timeout=3m --verbose",
"test": "nyc npm run test-es5 && nyc --no-clean npm run test-es6",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"main": "./dist/lib.node.js",
"browser": "./dist/lib.js",
"types": "./dist/index.d.ts",
"dependencies": {
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"meriyah": "^1.9.12",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@babel/types": "^7.8.7",
"@types/estree": "0.0.44",
"@types/node": "^13.11.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"ava": "^3.5.2",
"codelyzer": "^5.2.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"dayjs": "^1.8.26",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"moment": "^2.25.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"tslint": "~5.18.0",
"typedoc": "^0.17.3",
"typedoc-plugin-custom-tags": "^1.0.2",
"typedoc-plugin-external-module-name": "^3.0.0",
"typescript": "^3.8.3",
"uuid": "^8.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"tests/**/*.ts"
]
}
}