-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 803 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 803 Bytes
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
{
"name": "text-fit",
"version": "1.0.1",
"description": "Apply text styles based on the shape of the text",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test.js",
"example": "budo example --open"
},
"repository": "yoshuawuyts/text-fit",
"keywords": [
"text",
"fit",
"heading",
"css",
"size",
"auto"
],
"license": "MIT",
"dependencies": {
"xtend": "^4.0.1"
},
"devDependencies": {
"budo": "^8.0.0",
"dependency-check": "^2.5.1",
"hyperx": "^1.3.1",
"istanbul": "^0.4.2",
"tape": "^4.4.0",
"virtual-dom": "^2.1.1"
}
}