-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.28 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
{
"name": "snabbdom-typestyle",
"version": "1.0.9",
"description": "Snabbdom module for TypeStyle",
"main": "dist/snabbdom-typestyle.js",
"types": "dist/snabbdom-typestyle.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sklingler93/snabbdom-typestyle.git"
},
"keywords": [
"snabbdom",
"typestyle",
"css",
"style",
"virtual",
"dom"
],
"author": "Sebastian Klingler",
"license": "MIT",
"bugs": {
"url": "https://github.com/sklingler93/snabbdom-typestyle/issues"
},
"homepage": "https://github.com/sklingler93/snabbdom-typestyle#readme",
"dependencies": {
"snabbdom": "^0.7.1",
"snabbdom-to-html": "^5.1.1",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1"
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"coveragePathIgnorePatterns": [
"snabbdom-typestyle.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}