-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"author": "Nicolas Martinos <nicolas.martinos@people-doc.com>",
"name": "layout-linter",
"version": "0.0.4",
"contributors": [
"Elvina Valieva <elvina.valieva@people-doc.com>",
"Guillaume Gérard <guillaume.gerard@people-doc.com>"
],
"description": "Lint your HTML according to your own HTML rules",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/peopledoc/layout-linter.git"
},
"scripts": {
"start": "node index.js",
"test": "LAYOUT_LINTER_ENV='test' mocha ./tests/modules/*.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"dependencies": {
"app-root-path": "^2.1.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"jquery": "^3.2.1",
"jsdom": "^11.5.1"
},
"engines": {
"node": ">= 8"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"@commitlint/prompt-cli": "^7.2.1",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^4.19.1",
"http-server": "^0.11.1",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"puppeteer": "^1.8.0"
}
}