-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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": "@redwerks/landing-typography-theme",
"version": "1.0.0",
"description": "A Typography.js theme used in Redwerks' landing page framework.",
"keywords": [
"typography",
"typography-theme",
"redwerks",
"redwerks-landing"
],
"homepage": "https://github.com/redwerks/landing-typography-theme#readme",
"bugs": {
"url": "https://github.com/redwerks/landing-typography-theme/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redwerks/landing-typography-theme.git"
},
"license": "ISC",
"author": "Redwerks (https://redwerks.org/)",
"contributors": [
"Daniel Friesen <[email protected]>"
],
"main": "./dist/index.js",
"module": "./es/index.js",
"types": "./dist/index.d.js",
"files": [
"dist",
"es",
"src"
],
"scripts": {
"build": "tsc --target es5 --outDir dist && tsc --target es5 --module es2015 --outDir es",
"prepare": "npm run build",
"lint": "eslint --cache '*.{js}' --ext .js",
"pretty": "prettier --write '*.{js}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && license-validator"
}
},
"lint-staged": {
"*.{js}": [
"eslint --cache --ext .js"
]
},
"devDependencies": {
"@types/typography": "^0.16.3",
"typescript": "^3.7.5",
"typography": "^0.16.19"
},
"peerDependencies": {
"typography": "^0.16.19"
}
}