-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "@pauliojanpera/pipe-operator",
"productName": "Pipe operator",
"version": "0.0.23",
"description": "A typed pipe operator",
"author": {
"name": "Pauli Ojanperä",
"email": "[email protected]"
},
"copyright": "Pauli Ojanperä",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pauliojanpera/pipe-operator.git"
},
"type": "module",
"module": "esm/index.js",
"main": "cjs/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
},
"scripts": {
"dev": "if [ ! -d .verdaccio-store ] ; then if [ ! -d ~/.verdaccio-store ] ; then mkdir ~/.verdaccio-store ; fi ; ln -s ~/.verdaccio-store ; fi && pnpm verdaccio --listen 8798 --config ./verdaccio.yaml",
"build": "rm -rf .dist ; pnpm update @pauliojanpera/* --depth 0 --latest --filter=${npm_package_name} ; pnpm version patch --no-git-tag-version && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./post-build.mjs && pnpm publish ./.dist --access public --no-git-checks",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest",
"pub": "pnpm version patch -m 'v%s' && pnpm publish ./.dist --registry https://registry.npmjs.org/ --access public --publish-branch master"
},
"keywords": [
"pipe",
"pipeline",
"postfix",
"operator",
"typescript",
"cjs",
"esm",
"es2015",
"es6"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"fs-extra": "^10.0.0",
"jest": "^27.3.1",
"jest-environment-jsdom": "^27.3.1",
"shx": "^0.3.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}