This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "@typographist/core",
"version": "24.0.2",
"description": "Core API for typographist",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"commit": "cross-env npx git-cz",
"coverage": "cross-env cat ./coverage/lcov.info | coveralls",
"pretty": "cross-env prettier './**/**/**.{json,js}' --write",
"semantic-release": "cross-env npx semantic-release",
"test": "npm run test:code",
"test:watch": "cross-env jest --coverage --watch",
"test:code": "cross-env jest --coverage",
"lint:all": "cross-env eslint --fix .",
"lint:file": "cross-env eslint --fix",
"size": "cross-env size-limit"
},
"license": "MIT",
"homepage": "https://github.com/typographist/core#readme",
"repository": {
"type": "git",
"url": "https://github.com/typographist/core.git"
},
"bugs": {
"url": "https://github.com/typographist/core/issues"
},
"author": "maxinakenty <[email protected]>",
"keywords": [
"css-in-js",
"design",
"golden-ratio",
"modular",
"modular-scale",
"musical-scales",
"ratio",
"scale",
"typography",
"typographist",
"web-typography"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.2",
"@size-limit/preset-big-lib": "^2.1.6",
"commitizen": "^4.0.3",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.30"
}
}