-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 996 Bytes
/
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
{
"name": "filesystem-path",
"version": "0.4.1",
"description": "ES6 class that provides a fluent interface over strings representing filesystem paths",
"author": "Tom Rogers <tom@roguevendor.com>",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"repository": "github:tomprogers/filesystem-path",
"keywords": [
"basename",
"directory-separator",
"directory",
"file-extension",
"filename",
"folder",
"file",
"filesystem",
"path"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=prod babel src --ignore src/**/*.spec.js --out-dir dist --source-maps",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"jest": "^26.6.3"
},
"resolutions": {
"browserslist": "^4.16.5",
"hosted-git-info": "^2.8.9",
"path-parse": "^1.0.7",
"ws": "^7.4.6"
}
}