-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "schema-typed",
"version": "2.2.2",
"description": "Schema for data modeling & validation",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "tsc --outDir lib && tsc -p tsconfig-es.json --outDir es",
"prepublishOnly": "npm run test && npm run build",
"tdd": "mocha --watch",
"test": "npm run lint && npm run test:once",
"test:once": "nyc --reporter=lcovonly --reporter=html mocha",
"doctoc:": "doctoc README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/schema-typed.git"
},
"keywords": [
"schema",
"validation"
],
"contributors": [
"A2ZH",
"Simon Guo <simonguo.2009@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/schema-typed/issues"
},
"files": [
"lib",
"es",
"src",
"types"
],
"homepage": "https://github.com/rsuite/schema-typed#readme",
"dependencies": {
"get-value": "^3.0.1",
"set-value": "^4.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^3.5.0",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"cross-env": "^6.0.3",
"del": "^6.0.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.4",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"object-flaser": "^0.1.1",
"prettier": "^2.2.1",
"ts-node": "^10.9.2",
"typescript": "^4.2.2"
}
}