forked from atom/fs-plus
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "fs-plus",
"version": "3.1.1",
"description": "node's fs with more helpers",
"main": "./lib/fs-plus.js",
"scripts": {
"clean": "shx rm -rf lib",
"test": "jasmine-focused --captureExceptions --coffee spec",
"babel": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel src --out-dir lib",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/fs-plus.git"
},
"bugs": {
"url": "https://github.com/atom/fs-plus/issues"
},
"homepage": "http://atom.github.io/fs-plus",
"license": "MIT",
"keywords": [
"fs",
"filesystem"
],
"devDependencies": {
"jasmine-focused": "1.x",
"temp": "~0.8.1",
"coffeelint": "^2.1.0",
"rollup": "^2.18.2",
"rollup-plugin-atomic": "^1.2.0",
"@babel/cli": "7.10.3",
"@babel/core": "7.10.3",
"babel-preset-atomic": "^1.0.7",
"shx": "^0.3.2",
"cross-env": "^7.0.2"
},
"dependencies": {
"async": "^1.5.2",
"fs-extra": "^9.1.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2",
"underscore-plus": "1.x"
},
"coffeelintConfig": {
"no_empty_param_list": {
"level": "error"
},
"max_line_length": {
"level": "ignore"
}
}
}