-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.34 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
{
"name": "mural-schema",
"version": "3.5.0",
"description": "A JSON validation library using pure JSON schemas",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/muralco/mural-schema.git"
},
"author": "MURAL",
"license": "MIT",
"bugs": {
"url": "https://github.com/muralco/mural-schema/issues"
},
"homepage": "https://github.com/muralco/mural-schema",
"devDependencies": {
"@types/cucumber": "^4.0.4",
"@types/node": "^12.7.7",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"cucumber": "^4.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-muralco": "^1.0.2",
"eslint-plugin-prettier": "^3.1.2",
"pickled-cucumber": "^6.2.0",
"prettier": "^1.19.1",
"ts-node": "^7.0.1",
"ts-unused-exports": "^2.0.10",
"typescript": "^4.9.5"
},
"scripts": {
"build": "npm run lint && tsc",
"dist": "rm -rf dist && npm run build && npm run test && cp package*.json README.md LICENSE dist && rm dist/test.*",
"lint": "eslint --cache src/**/*.ts && ts-unused-exports tsconfig.json",
"pack": "npm run dist && cd dist && npm pack",
"test": "cucumber-js --require-module ts-node/register --tags 'not @ignore' -r src/test.ts",
"watch": "tsc -w"
}
}