-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"private": false,
"name": "match-with",
"version": "1.5.1",
"description": "Pattern matching object structures",
"author": "Rick Wong",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/RickWong/match-with.git"
},
"homepage": "https://github.com/RickWong/match-with",
"main": "index.js",
"files": [
"*.js",
"*.json",
"*.md"
],
"prettier": {
"printWidth": 100,
"trailingComma": "all"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --inspect example.js",
"test": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --runInBand ./",
"prettier": "find . -type f \\( -iname \\*.js -o -iname \\*.css \\) | grep -v node_modules | xargs prettier --write",
"build": "yarn prettier && yarn test"
},
"keywords": [
"pattern",
"matching",
"object",
"structure",
"structures",
"match",
"function",
"functions",
"with",
"exists"
],
"devDependencies": {
"cross-env": "5.2.0",
"jest": "24.1.0",
"nodemon": "1.18.10",
"prettier": "1.16.4"
}
}