forked from muralco/mural-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 KB
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": "@miroculus/schema",
"version": "3.3.2",
"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",
"cucumber": "^4.2.1",
"pickled-cucumber": "^2.0.2",
"ts-node": "^7.0.1",
"ts-unused-exports": "^2.0.10",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.6.3"
},
"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": "tslint -p . && 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"
}
}