-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.06 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
40
41
42
43
44
45
46
47
48
49
{
"name": "@voxgig/structjs",
"version": "0.0.1",
"description": "Data structure manipulations",
"main": "src/struct.js",
"type": "commonjs",
"homepage": "https://github.com/voxgig/struct",
"keywords": [
"voxgig",
"data",
"struct",
"structure",
"json"
],
"author": "Richard Rodger, http://richardrodger.com",
"repository": {
"type": "git",
"url": "git://github.com/voxgig/struct.git"
},
"scripts": {
"test": "node --enable-source-maps --test test/struct.test.js test/client.test.js",
"walk-bench": "node --enable-source-maps --test test/walk-bench.test.js",
"test-cov": "rm -rf ./coverage && mkdir -p ./coverage && node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --enable-source-maps --test test/struct.test.js",
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test test/struct.test.js",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\"",
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org"
},
"author": "",
"license": "MIT",
"files": [
"LICENSE",
"src"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"prettier": "^3.3.3"
}
}