-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "chainsmoker",
"version": "1.0.3",
"description": "Elegant, generically typed, boolean micromatch for lists of file paths",
"author": "Paul Melnikow",
"keywords": [
"minimatch",
"micromatch",
"path-matching",
"filematch",
"keyed-paths",
"typescript"
],
"license": "MIT",
"repository": "paulmelnikow/chainsmoker",
"scripts": {
"lint": "eslint --ext ts,js .",
"check-types": "tsc --noEmit",
"prettier:check": "prettier --check \"**/*.@(ts|js|md|json|yml)\"",
"prettier": "prettier --write \"**/*.@(ts|js|md|json|yml)\"",
"unit": "jest",
"test": "run-p --silent --continue-on-error lint unit prettier:check",
"prebuild": "rimraf dist/",
"build": "microbundle",
"prepare": "npm run build",
"dev": "microbundle watch"
},
"dependencies": {
"lodash.mapvalues": "^4.6.0",
"micromatch": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash.mapvalues": "^4.6.6",
"@types/micromatch": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"engines": {
"node": ">= 8.x"
},
"jest": {
"preset": "ts-jest"
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "chainsmoker.ts",
"types": "dist/chainsmoker.d.ts",
"files": [
"dist/index*"
]
}