forked from less/less.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
{
"name": "@less/root",
"private": true,
"version": "1000.0.0",
"description": "Less monorepo",
"homepage": "http://lesscss.org",
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.4",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"glob": "^7.1.4",
"husky": "3.0.9",
"lerna": "^3.16.4",
"lint-staged": "9.4.2",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"scripts": {
"ci": "lerna run ci && yarn run lint",
"lint:fix": "eslint --fix '**/*.{ts,json}'",
"lint": "eslint '**/*.{ts,json}'",
"bootstrap": "lerna bootstrap",
"compile": "lerna run compile"
},
"bugs": {
"url": "https://github.com/less/less.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/less/less.js.git"
},
"master": {
"url": "https://github.com/less/less.js/blob/master/",
"raw": "https://raw.githubusercontent.com/less/less.js/master/"
},
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/jasmine"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"dependencies": {}
}