-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "miniscale",
"version": "1.3.1",
"description": "A tiny package for working with modular scale",
"main": "lib/miniscale.js",
"types": "lib/miniscale.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "babel src -d lib --source-maps",
"declaration:build": "tsc -p tsconfig.declaration.json",
"dev": "npm run build -- --watch",
"test": "jest",
"test-watch": "npm run test -- --watch",
"prepare": "npm run build && npm run declaration:build"
},
"keywords": [
"modular",
"scale",
"type",
"typescale",
"modularscale",
"ratio",
"typography"
],
"author": "Gabor Vajda <gabor@madscience.design>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/vajdagabor/miniscale.git"
},
"bugs": {
"url": "https://github.com/vajdagabor/miniscale/issues"
},
"homepage": "https://github.com/vajdagabor/miniscale#readme",
"babel": {
"presets": [
"minify",
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@types/jest": "^24.9.1",
"acorn": "^7.2.0",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"typescript": "^3.9.5"
},
"dependencies": {}
}