-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "readdir",
"description": "Reads a directory and return results with the ability to use Ant style file match patterns ",
"version": "1.0.2",
"author": "Steve King <[email protected]>",
"contributors": [
{
"name": "Steve King",
"email": "[email protected]"
}
],
"scripts": {
"test": "jest",
"clean": "rimraf ./dist",
"build": "tsc --project tsconfig.publish.json",
"preversion": "yarn run clean && yarn run build && yarn test",
"postversion": "npm publish --access=public && git push && git push --tags && yarn clean"
},
"dependencies": {
"@kwsites/file-exists": "^1.0.0",
"@kwsites/math-sum": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"rimraf": "^3.0.1",
"typescript": "~3.7.2"
},
"keywords": [
"directory",
"fs"
],
"repository": "git://github.com/steveukx/readdir.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist/**/*.js",
"dist/**/*.map",
"dist/**/*.d.ts"
]
}