-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 916 Bytes
/
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
{
"name": "meta-schema-core",
"version": "0.0.1",
"description": "A schema for defining schemas",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js",
"test-ci": "node ./node_modules/jest/bin/jest.js --ci --reporters=default --reporters=jest-junit --coverage --coverageDirectory=test-results/coverage"
},
"jest": {
"coverageReporters": [
"lcov"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": ".",
"outputName": "./test-results/unit-tests.xml"
},
"author": "",
"license": "ISC",
"devDependencies": {
"assert": "^2.0.0",
"eslint": "^7.13.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}