-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "natural-scale",
"version": "2.1.1",
"description": "A simple ratio-based scale to make your type not bad",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --watch",
"ci:test": "jest",
"cover": "nyc report --reporter=html --reporter=lcov > coverage.lcov && codecov",
"clean": "rm -rf dist/__tests__ dist/__mocks__",
"prepublish": "npm run ci:test && npm run build",
"build": "tsc && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakeleboeuf/natural-scale.git"
},
"keywords": [
"type",
"scale",
"rhythm",
"modular",
"fractional",
"typography",
"size"
],
"author": "Jake LeBoeuf",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakeleboeuf/natural-scale/issues"
},
"homepage": "https://github.com/jakeleboeuf/natural-scale#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"nyc": "^14.1.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2",
"uglify-js": "^3.6.9"
}
}