-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "style-helper",
"version": "4.0.0",
"description": "Small helpers for working with CSS-in-JS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rimraf dist/ && tsc",
"test:cov": "jest --coverage",
"test": "npm run build && npm run lint && npm run test:cov",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/style-helper.git"
},
"keywords": [
"style",
"helper",
"url",
"escape",
"free-style"
],
"author": "Blake Embrey <hello@blakeembrey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/style-helper/issues"
},
"homepage": "https://github.com/blakeembrey/style-helper",
"jest": {
"transform": {
"\\.tsx?$": "ts-jest"
},
"rootDir": "src/",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.0",
"jest": "^24.7.1",
"rimraf": "^2.6.1",
"ts-jest": "^24.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.6"
}
}