-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": "Sebastien Rousseau <contact@maccfg.com> (https://github.com/sebastienrousseau/maccfg)",
"autoupdate": {
"fileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"source": "git",
"target": "git://github.com/sebastienrousseau/maccfg.git"
},
"bugs": {
"url": "https://github.com/sebastienrousseau/maccfg/issues"
},
"description": "A guide to getting your Mac M-Series ready for Software Development.",
"devDependencies": {
"filesizes": "^0.1.2",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.5"
},
"directories": {
"src": "./src"
},
"engines": {
"node": "^10.19.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"/COPYRIGHT",
"/src"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sebastienrousseau"
},
{
"type": "paypal",
"url": "https://paypal.me/wwdseb"
}
],
"homepage": "https://maccfg.com",
"keywords": [
"apple",
"config",
"configuration-management",
"devops",
"dev-tools",
"homebrew",
"mac-setup",
"mac",
"macbook-configuration",
"macbook-pro",
"macbook-setup",
"maccfg",
"macos-config",
"macos-setup",
"macos",
"macosx",
"osx-setup",
"preferences",
"setup"
],
"license": "MIT",
"license_URI": "http://www.opensource.org/licenses/mit-license.php",
"lockfileVersion": 1,
"name": "@sebastienrousseau/maccfg",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastienrousseau/maccfg.git"
},
"scripts": {
"build:maccfg": "pnpm run clean:dist && pnpm run create:directory && pnpm run copy:src && pnpm run copy:readme && pnpm run copy:license && pnpm run copy:makefile && pnpm run copy:copyright && pnpm run filesize:distribution",
"build": "pnpm run build:maccfg && cat ./package.json | grep -v '\"private\":' > dist/package.json && pnpm pack ./dist",
"clean:dist": "rimraf \"dist/\"",
"copy:copyright": "cp COPYRIGHT dist/",
"copy:license": "cp LICENSE dist/",
"copy:makefile": "cp Makefile dist/",
"copy:readme": "cp README.md dist/",
"copy:src": "cp -R ./src dist/src",
"create:directory": "mkdirp ./dist",
"filesize:distribution": "filesizes dist/ > dist/Report.txt",
"release:prepare": "pnpm run publish $(node -p \"p=require('./package.json');p.name+'-'+p.version+'.tgz'\")",
"release:publish": "pnpm run publish --access public --ignore-scripts --@OWNER:registry='https://registry.npmjs.org'"
},
"type": "module",
"version": "0.0.3"
}