-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "@fink/js-interop",
"version": "0.0.0-semantically-released",
"license": "MIT",
"engines": {
"node": ">=14.13.0"
},
"sideEffects": false,
"type": "module",
"exports": {
"./*": {
"import": "./*",
"require": "./cjs/*"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:fink-lang/js-interop"
},
"bugs": "https://github.com/fink-lang/js-interop/issues",
"homepage": "https://github.com/fink-lang/js-interop",
"scripts": {
"default": "run clean test build",
"clean": "rimraf ./build",
"build": "run build:*",
"build:dir": "mkdir -p ./build/pkg",
"build:esm": "babel --out-dir build/pkg/ ./src/*.js",
"build:cjs": "babel --config-file ./babel.build-cjs.config.js --out-dir build/pkg/cjs ./src/*.js",
"build:pkg-cjs": "cp ./package-cjs.json build/pkg/cjs/package.json",
"build:files": "cp ./package.json ./README.md ./LICENSE ./build/pkg/",
"test": "run lint jest",
"lint": "eslint ./src",
"jest": "jest --verbose --runInBand --no-cache ",
"cd": "run clean test build release",
"release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@fink/jest": "^7.0.0",
"@fink/larix": "^20.0.0",
"@fink/loxia": "^24.0.0",
"@fink/std-lib": "^8.6.0",
"babel-jest": "^27.0.0",
"commitizen": "^4.0.5",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.0.0",
"jest-cli": "^27.0.0",
"npx-run": "^2.1.2",
"semantic-release": "^18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}