-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lassify",
"description": "cli for lass",
"version": "0.1.1",
"author": {
"name": "Spencer Snyder",
"email": "[email protected]",
"url": "https://spencersnyder.io"
},
"ava": {
"verbose": true
},
"bin": {
"lassify": "src/cli.js"
},
"bugs": {
"url": "https://github.com/lassjs/lassify/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Spencer Snyder",
"email": "[email protected]",
"url": "https://spencersnyder.io"
}
],
"dependencies": {
"cosmiconfig": "^7.0.1",
"debug": "^4.3.4",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"is-string-and-not-blank": "^0.0.2",
"load-json-file": "^7.0.1",
"lodash": "^4.17.21",
"meow": "^10.1.2",
"npm-check-updates": "^13.0.3",
"npm-conf": "^1.1.3",
"ora": "^6.1.0",
"path-exists": "^5.0.0",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"read-pkg-up": "^9.1.0",
"semver": "^7.3.7",
"superb": "^4.0.0",
"tmp-promise": "^3.0.3",
"validate-npm-package-name": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"ava": "^4.2.0",
"codecov": "^3.8.2",
"cross-env": "latest",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"nyc": "^15.1.0",
"sinon": "^14.0.0",
"xo": "^0.49.0"
},
"engines": {
"node": ">= 12"
},
"homepage": "https://github.com/lassjs/lassify",
"keywords": [
"lass",
"lassify"
],
"license": "MIT",
"main": "src/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lassjs/lassify.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "yarn run lint:js && yarn run lint:md && yarn run lint:package",
"lint:js": "xo",
"lint:md": "prettier --check **/*.md",
"lint:package": "fixpack --dryrun",
"test": "cross-env NODE_ENV=test ava",
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test",
"ug": "ncu -i"
},
"type": "module"
}