-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "@bjesuiter/serializr-helpers",
"version": "2.2.1",
"description": "Provides some helper functions and serialization PropertySchemas for mobxjs/serializr - library",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:esnext build:commonjs.es5 build:commonjs.es6 build:esm.es5 build:esm.es6",
"build:esnext": "tsc -p tsconfig.json",
"build:commonjs.es5": "tsc -p tsconfig.commonjs.es5.json",
"build:commonjs.es6": "tsc -p tsconfig.commonjs.es6.json",
"build:esm.es5": "tsc -p tsconfig.esm.es5.json",
"build:esm.es6": "tsc -p tsconfig.esm.es6.json",
"lint": "wotan -p tsconfig.json",
"lint:fix": "wotan -p tsconfig.json --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:watch:coverage": "jest --watch --coverage",
"prepublishOnly": "npm-run-all lint test:coverage build",
"deploy:yes": "npm publish --access public",
"deploy": "npm publish --access public --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjesuiter/serializr-helpers.git"
},
"files": [
"README.md",
"package.json",
"dist",
"dist.commonjs.es5",
"dist.commonjs.es6",
"dist.esm.es5",
"dist.esm.es6"
],
"keywords": [
"serializr",
"typescript-serializer",
"object-serializer",
"serializer-helpers",
"serialize-helpers",
"serializr-helpers"
],
"author": "Benjamin Jesuiter <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bjesuiter/serializr-helpers/issues"
},
"homepage": "https://github.com/bjesuiter/serializr-helpers#readme",
"devDependencies": {
"@fimbul/mithotyn": "^0.18.0",
"@fimbul/wotan": "^0.20.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/minilog": "^2.0.29",
"minilog": "^3.1.0",
"moment": "^2.24.0",
"serializr": "^1.5.1"
}
}