-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "@romancow/nosync",
"version": "1.0.0",
"description": "Stop iCloud from syncing designated files and folders",
"main": "cjs/index.js",
"module": "es6/index.js",
"types": "types/index.d.ts",
"bin": "cjs/cli.js",
"files": [
"es6/",
"cjs/",
"types/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./es6/* ./cjs/* ./types/*",
"build:es6": "tsc -p .",
"build:cjs": "rollup -c",
"prebuild": "npm run clean",
"build": "npm run build:es6 && npm run build:cjs",
"prepare": "npm run build"
},
"repository": "git://github.com/romancow/nosync.git",
"keywords": [
"iCloud",
"sync",
"nosync",
"symlink",
"node_modules"
],
"author": "Sean Wilson",
"license": "ISC",
"bugs": {
"url": "https://github.com/romancow/nosync/issues"
},
"homepage": "https://github.com/romancow/nosync#readme",
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.6",
"rimraf": "^3.0.0",
"rollup": "^1.27.3",
"rollup-plugin-consts": "^1.0.1",
"rollup-plugin-executable": "^1.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"commander": "^4.0.1",
"fs-extra": "^8.1.0"
}
}