forked from SimonLuoshiping/AMDFriend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 959 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 959 Bytes
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
{
"name": "friendlyamd",
"version": "1.0.0",
"main": "dist/index.js",
"bin": "dist/cli.js",
"license": "MPL-2.0",
"keywords": [
"friendlyamd",
"amdfriendly",
"amd",
"friendly",
"friend"
],
"author": {
"name": "Jonathan Ferraz"
},
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint src/ --ext .ts",
"build": "tsc",
"build:binary": "pkg . -t node16-macos-x64 --compress Brotli",
"clean": "rm -rf dist",
"test": "yarn build && yarn start",
"start": "node dist/cli.js"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"pkg": "^5.8.0",
"typescript": "^4.1.3"
},
"dependencies": {
"yargs": "^17.3.1"
},
"pkg": {
"scripts": "dist/**/*.js",
"outputPath": "bin"
}
}