-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 2.05 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
{
"name": "@datastream/schema-monorepo",
"version": "2.25.1",
"description": "DataStream Water Quality Exchange (WQX): JSON Schema and JSON Table Schema for DataStream",
"private": true,
"type": "module",
"main": "",
"scripts": {
"prepare": "husky install",
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
"pre-commit": "",
"lint": "npm run lint:js && npm run lint:tf",
"lint:js": "prettier --write **/*.{js,json} && standard --fix **/*.js",
"lint:tf": "terraform fmt -recursive -write",
"install": "lerna bootstrap",
"test": "lerna exec --bail --concurrency 5 c8 npm run test",
"lerna:rm": "npm run lerna:rm:node_modules && npm run lerna:rm:lock",
"lerna:rm:lock": "lerna exec -- rm -rf package-lock.json",
"lerna:rm:node_modules": "lerna exec -- rm -rf node_modules",
"lerna:update": "lerna exec --bail --concurrency 5 npm update",
"lerna:outdated": "lerna exec --concurrency 2 npm outdated",
"lerna:audit": "lerna exec --concurrency 2 npm audit fix",
"lerna:sync": "lerna exec --bail --concurrency 2 npm install && lerna publish --yes --skip-npm --skip-git --repo-version $npm_package_version",
"lerna:publish": "lerna publish --yes --no-git-tag-version --no-push --registry https://npm.pkg.github.com/ --repo-version $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datastreamapp/schema.git"
},
"keywords": [
"water quality exchange",
"WQX",
"jsonschema",
"data-schema",
"meta-schema",
"datastream"
],
"author": "willfarrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/datastreamapp/schema/issues"
},
"homepage": "https://github.com/datastreamapp/schema#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"ajv-cmd": "^0.7.0",
"ava": "^5.0.0",
"c8": "^8.0.0",
"lerna": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"sinon": "^15.0.0",
"standard": "^17.0.0"
}
}