-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.58 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.58 KB
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
{
"name": "@basisbeeld/json-utils",
"version": "0.2.6",
"description": "JSON utilities to process changes and paths in json objects",
"repository": {
"type": "git",
"url": "git+https://github.com/basisbeeld/json-utils.git"
},
"author": "Incubator",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "yarn run build:commonjs --watch & yarn run build:esm --watch && kill $!",
"lint": "eslint src/**/*.js",
"test": "jest",
"test:coverage": "jest --coverage --coverageDirectory=\"./coverage\"",
"test:watch": "jest --watch",
"build:esm": "rm -rf esm && NODE_ENV='production' BUILD_ESM='true' yarn run babel -f ./babel.config.js src --source-maps --out-dir esm",
"build:commonjs": "rm -rf dist && NODE_ENV='production' yarn run babel -f ./babel.config.js src --source-maps --out-dir dist",
"build:bundle": "rm -rf build && NODE_ENV='production' yarn run babel -f ./babel.config.js src --source-maps --out-file build/index.js",
"build:release": "yarn run lint && yarn run test:coverage && yarn run build:commonjs && yarn run build:esm && yarn run build:bundle"
},
"main": "dist/index.js",
"module": "esm/index.js",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"babel-loader": "^9.1.3",
"babel-plugin-explicit-exports-references": "^1.0.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0"
}
}