-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "qc-type_of",
"version": "1.0.0",
"author": {
"name": "Danny Hurlburt",
"url": "https://github.com/dhurlburtusa"
},
"description": "A more useful alternative to `typeof <value>`",
"keywords": [
"javascript",
"typeof",
"typescript"
],
"homepage": "https://github.com/hypersoftllc/qc-type_of#readme",
"bugs": {
"url": "https://github.com/hypersoftllc/qc-type_of/issues"
},
"license": "ISC",
"files": [
"dist/",
"src/index.ts"
],
"main": "dist/index.js",
"typings": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/hypersoftllc/qc-type_of.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf coverage dist",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "tsc",
"test": "jest --color --coverage",
"travisci": "npm test"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
]
},
"devDependencies": {
"@types/jest": "^19.2.2",
"coveralls": "^2.13.1",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^19.0.14",
"typescript": "^2.3.2"
}
}