-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@studio/schema",
"version": "7.0.1",
"description": "Plain JavaScript objects with runtime type guarantees",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha",
"test:browser": "mochify",
"test:coverage": "nyc npm run test:node",
"watch": "npm run test:node -- --watch",
"build": "tsc --project tsconfig.pack.json",
"clean": "rimraf --glob '!(node_modules)/**/*.d.ts' 'index.d.ts'",
"prepack": "npm run build",
"postpack": "npm run clean",
"preversion": "npm run lint && npm run prettier:check && tsc && npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check *.{js,json,md}",
"prettier:write": "prettier --write *.{js,json,md}",
"prepare": "husky"
},
"keywords": [
"schema",
"validation",
"type-checking",
"json"
],
"author": "Maximilian Antoni <[email protected]>",
"homepage": "https://github.com/javascript-studio/schema",
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/schema.git"
},
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "@studio"
},
"mocha": {
"reporter": "dot",
"spec": "./{,!(node_modules)/**}/*.test.js"
},
"mochify": {
"reporter": "dot",
"driver": "puppeteer",
"bundle": "esbuild --bundle --color --sourcemap=inline --define:process.env.NODE_DEBUG=\"\"",
"bundle_stdin": "require",
"spec": "./{,!(node_modules)/**}/*.test.js"
},
"devDependencies": {
"@mochify/cli": "^0.4.1",
"@mochify/driver-puppeteer": "^0.3.1",
"@sinonjs/referee-sinon": "^12.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"@studio/related-tests": "^0.2.0",
"@studio/tsconfig": "^1.3.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.3"
},
"files": [
"CHANGES.md",
"**/*.js",
"**/*.d.ts",
"!lib/*.test.js",
"!.*"
],
"license": "MIT"
}