-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "@nodewell/path",
"version": "0.0.0-development",
"description": "A Node.js utility to provide a simple solution for path management in your build scripts and in general tasks.",
"author": "Richard King <richrdkng@gmail.com> (www.richrdkng.com)",
"license": "ISC",
"homepage": "https://github.com/nodewell/path#readme",
"repository": {
"type": "git",
"url": "https://github.com/nodewell/path.git"
},
"bugs": {
"url": "https://github.com/nodewell/path/issues"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"files": [
"internal/**/*.js",
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"test": "jest",
"build": "npm run gulp -- build",
"gulp": "gulp --gulpfile scripts/index.js"
},
"dependencies": {
"pkg-dir": "^4.2.0",
"string-similarity": "^4.0.1",
"yaml": "^1.9.0"
},
"devDependencies": {
"@richrdkng/dmd-plugin-simple-nodejs-project": "^1.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.2.1",
"codecov": "^3.6.5",
"gulp": "^4.0.2",
"gulp-debug": "^4.0.0",
"gulp-tap": "^2.0.0",
"jest": "^26.0.1",
"jsdoc-to-markdown": "^6.0.1",
"semantic-release": "^17.0.6",
"snazzy": "^8.0.0",
"standard": "^14.3.3"
},
"standard": {
"envs": [
"jest"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"node",
"nodewell",
"path",
"paths"
]
}