-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 KB
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
73
74
{
"name": "tinypath",
"version": "0.0.1",
"description": "A tiny utility for generate chains of object property paths",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"scripts": {
"review": "npm run build && npm test && size-limit && yaspeller *.md",
"test": "uvu -r ts-node/register __tests__",
"test:coverage": "c8 --include=src npm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smurygin/tinypath.git"
},
"keywords": [
"generator",
"object",
"path",
"paths"
],
"author": {
"name": "Dmitry Smurygin",
"email": "d.a.smurygin@gmail.com",
"url": "https://smurygin.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/smurygin/tinypath/issues"
},
"size-limit": [
{
"name": "tinypath",
"import": "{ getPaths }",
"limit": "710 B"
}
],
"homepage": "https://github.com/smurygin/tinypath#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-typescript": "^8.2.1",
"@size-limit/preset-small-lib": "^4.10.2",
"c8": "^7.7.1",
"check-dts": "^0.4.4",
"esm": "3.2.25",
"husky": "^4.3.8",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^4.10.1",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"uvu": "0.5.1",
"yaspeller": "^7.0.0"
},
"yaspeller": {
"lang": "en",
"dictionary": [
"tinypath",
"TinyPathOptions"
]
}
}