-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.18 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
{
"name": "stlint",
"version": "1.0.65",
"description": "Stylus Linter",
"main": "index.js",
"bin": {
"stlint": "./bin/stlint"
},
"files": [
"bin/",
"index.js",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/stylus/stlint"
},
"bugs": {
"url": "https://github.com/stylus/stlint/issues"
},
"scripts": {
"newversion": "npm test && npm version patch --no-git-tag-version && npm run build && npm run doc && npm run newversiongit && npm publish ./",
"newversiongit": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/stylus/stlint/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master",
"start": "webpack --watch",
"build": "webpack",
"doc": "./bin/stlint --doc rules --fix",
"test2": "./bin/stlint ./test.styl",
"test": "mocha tests/**/**.ts tests/**.ts",
"fix": "tslint -c tslint.json ./src/**/*.ts ./src/**/**/*.ts ./src/*.ts --fix"
},
"keywords": [
"lint",
"linter",
"stylus",
"stylus-linter",
"stlint"
],
"author": "Chupurnov Valeriy<[email protected]>",
"license": "MIT",
"dependencies": {
"@types/yargs": "^15.0.3",
"async": "^2.6.3",
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"escaper": "^3.0.3",
"glob": "^7.1.6",
"husky": "^4.2.3",
"native-require": "^1.1.4",
"node-watch": "^0.6.3",
"prettier": "^1.19.1",
"strip-json-comments": "^2.0.1",
"stylus": "^0.54.7",
"yargs": "^13.3.0"
},
"devDependencies": {
"@types/async": "^2.4.2",
"@types/chai": "^4.2.9",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.7",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.7.5",
"typings": "^2.1.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"mocha": {
"require": [
"ts-node/register",
"tests/staff/bootstrap.ts"
]
}
}