forked from nvie/decoders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.17 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.17 KB
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
98
99
100
101
102
{
"name": "decoders",
"version": "1.18.1",
"description": "Elm-like decoders for when working with Flow types in JS",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nvie/decoders.git"
},
"author": "Vincent Driessen",
"homepage": "https://github.com/nvie/decoders#readme",
"bugs": {
"url": "https://github.com/nvie/decoders/issues"
},
"main": "./dist/index.js",
"scripts": {
"actually-prepublish": "echo \"\\n\\nPlease run \\`bin/publish.sh <options>\\` instead.\\n\\n\" && exit 2",
"build": "./bin/build.sh",
"check": "yarn run check:eslint && yarn run check:prettier && yarn run check:import-sort",
"check:eslint": "eslint --report-unused-disable-directives src",
"check:import-sort": "import-sort --list-different 'src/**/*.js'",
"check:prettier": "prettier --list-different 'src/**/*.js'",
"clean": "rimraf dist",
"fix": "yarn run fix:prettier && yarn run fix:import-sort",
"fix:import-sort": "import-sort --write 'src/**/*.js'",
"fix:prettier": "prettier --write 'src/**/*.js'",
"prepublish": "in-publish && yarn run actually-prepublish || not-in-publish",
"test": "yarn run clean && yarn run test:flow && yarn run test:typescript && yarn run test:jest && yarn run check",
"test:flow": "flow check",
"test:jest": "jest --coverage",
"test:typescript": "dtslint --onlyTestTsNext src/types",
"watch": "jest --watch"
},
"files": [
"dist/"
],
"keywords": [
"decoder",
"decoders",
"guard",
"object",
"array",
"string",
"email",
"regex",
"number",
"integer",
"boolean",
"truthy",
"date",
"mapping",
"dict",
"mixed",
"tuple2",
"unknown",
"optional",
"nullable",
"maybe",
"compose",
"map",
"predicate"
],
"dependencies": {
"debrief": "^1.3.0",
"lemons": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.2",
"dtslint": "^2.0.2",
"eslint": "^6.0.1",
"eslint-plugin-flowtype": "^4.2.0",
"flow-bin": "^0.120.1",
"flow-copy-source": "^2.0.1",
"flow-typed": "^3.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-eslint": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"in-publish": "^2.0.0",
"itertools": "^1.3.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"prettier": "^1.19.1",
"prettier-plugin-package": "^0.3.1",
"rimraf": "^3.0.0"
},
"githubUrl": "https://github.com/nvie/decoders",
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"fixtures.js",
".skip.js"
]
},
"sideEffects": false,
"types": "./dist/types/index.d.ts"
}