forked from rsuite/schema-typed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
80
81
82
83
84
85
{
"name": "schema-typed",
"version": "2.0.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": "gulp build && npm run build:types",
"build:types": "npx tsc --emitDeclarationOnly --outDir lib && npx tsc --emitDeclarationOnly --outDir es",
"prepublishOnly": "npm run test && npm run build",
"tdd": "mocha --watch",
"test": "npm run lint && npm run test:once && npm run test:types",
"test:once": "nyc --reporter=lcovonly --reporter=html mocha",
"test:types": "dtslint --expectOnly --localTs node_modules/typescript/lib types",
"doctoc:": "doctoc README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/schema-typed.git"
},
"keywords": [
"schema",
"validation"
],
"contributors": [
"A2ZH",
"Simon Guo <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/schema-typed/issues"
},
"files": [
"lib",
"es",
"types"
],
"homepage": "https://github.com/rsuite/schema-typed#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-proto-to-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.13.8",
"@babel/runtime-corejs2": "^7.8.4",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-eslint": "^9.0.0",
"chai": "^3.5.0",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"cross-env": "^6.0.3",
"del": "^6.0.0",
"dtslint": "^4.0.7",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"istanbul": "^0.4.5",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"object-flaser": "^0.1.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.16.0"
}
}