-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 2.01 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
{
"name": "@gmetrixr/ai-rjson",
"version": "2.0.17",
"description": "(R)ecursive Json for AI",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"repository": "https://github.com/gmetrixr/ai-rjson",
"author": "Sahil Ahuja <[email protected]>",
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"@comment TEST": "Useful for testing",
"check": "./node_modules/.bin/tsc --noEmit",
"lint": "./node_modules/.bin/eslint --ext \".ts,.tsx\" ./src ",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --slow 0",
"test-debug": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --inspect-brk=0.0.0.0:3601 --color true --timeout 999999",
"watch-test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -w",
"circular": "npx madge --circular --extensions ts src/index.ts",
"@comment PUBLISH": "Used for publishing this repo",
"build": "rm -rf lib; ./node_modules/.bin/tsc -p tsconfig.json && ./node_modules/.bin/tsc -p tsconfig-cjs.json",
"bundle": "pnpm publish:version && pnpm publish:npm",
"publish:version": "N=$(node -p \"require('./package.json').name\") && pnpm version patch --message \"v%s: $N [ci skip]\"",
"publish:version-notag": "N=$(node -p \"require('./package.json').name\") && pnpm version --no-git-tag-version patch && git commit -am \"trigger: $N [no skip]\"",
"publish:npm": "V=$(node -p \"require('./package.json').version\") && pnpm publish --no-git-check"
},
"devDependencies": {
"@gmetrixr/gdash": "^1.3.26",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@types/ramda": "^0.27.39",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"chai": "^4.3.4",
"chalk": "^4.1.0",
"eslint": "^8.56.0",
"fs": "0.0.1-security",
"mocha": "^8.3.2",
"prettier": "^2.8.8",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^5.1.3"
}
}