-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "@fink/cli",
"version": "0.0.0-semantically-released",
"description": "CLI for compiling fink to JS",
"license": "MIT",
"keywords": [
"compiler",
"cli",
"fink",
"fink-lang"
],
"engines": {
"node": ">=14.13.0"
},
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/fink-lang/cli"
},
"bugs": "https://github.com/fink-lang/cli/issues",
"homepage": "https://github.com/fink-lang/cli",
"scripts": {
"default": "run clean test build",
"clean": "rimraf ./build",
"build": "run build:*",
"build:dir": "mkdir -p ./build/pkg/",
"build:fnk": "fnk --module-type esm --src ./src --out-dir build/pkg --ignore 'src/**/*.test.fnk'",
"build:files": "cp ./package.json ./README.md ./LICENSE ./build/pkg/",
"test": "run jest",
"jest": "jest --verbose --runInBand --no-cache ",
"cd": "run clean test build release",
"release": "semantic-release"
},
"bin": {
"fnk": "index.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"@fink/larix": ">=13.0.0",
"@fink/loxia": ">=14.0.2"
},
"devDependencies": {
"@fink/cli": "^8.1.0",
"@fink/jest": "^7.1.0",
"@fink/larix": "^20.0.0",
"@fink/loxia": "^23.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"jest-cli": "^27.0.0",
"npx-run": "^2.1.2",
"semantic-release": "^17.2.1"
},
"dependencies": {
"@fink/js-interop": "^3.1.1",
"@fink/std-lib": "^8.2.0",
"minimatch": "^3.0.4",
"yargs": "^17.0.0"
}
}