-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.29 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
{
"name": "typologica",
"version": "0.0.78",
"description": "dead simple type checker based on .constructor.name",
"files": [
"README.md",
"LICENSE",
"lib"
],
"directories": {
"lib": "lib/"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./module": {
"import": "./lib/index.js",
"browser": "./lib/index.js",
"require": "./lib/index.js",
"default": "./lib/index.js"
}
},
"scripts": {
"build": "rm -rf ./lib && npx tsc --pretty && npm run lint && npx tsc ./test/*.ts && npx eslint --fix --no-ignore ./test/test*.js",
"lint": "npx eslint --fix --ignore-path .gitignore ./lib",
"lint:test": "npx eslint --fix --ignore-path .gitignore ./test",
"test": "npm run build && mocha test/index.js && mocha -r ts-node/register test/*.spec.ts",
"test:coverage": "npm run build && nyc --reporter=lcov mocha --ui bdd --reporter spec ./test/index.js",
"debug": "npx mocha --reporter spec --inspect-brk test/index",
"report-coverage": "cat coverage/lcov.info | coveralls",
"ts:lint": "npx tslint --fix --ignore-path .gitignore ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mythographica/typologica.git"
},
"keywords": [
"JavaScript",
"TypeChecker",
"Inheritance"
],
"author": "went.out@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/mythographica/typologica/issues"
},
"lint-staged": {
"*.js": "eslint --fix --ignore-path .gitignore"
},
"homepage": "https://github.com/mythographica/typologica#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.51",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-no-arrow-this": "^1.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"mocha": "^8.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}