-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "@sulu/web",
"version": "2.4.1",
"description": "Manage your js components",
"main": "packages/core/core.js",
"repository": {
"type": "git",
"url": "https://github.com/sulu/web-js.git"
},
"scripts": {
"test": "node tests/test-runner.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint packages",
"lint:js:fix": "eslint packages --fix",
"lint:css": "stylelint packages/scss/**/*.scss --custom-syntax postcss-scss",
"lint:css:fix": "stylelint packages/scss/**/*.scss --custom-syntax postcss-scss --fix"
},
"keywords": [
"js",
"components",
"management"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sulu/web-js/issues"
},
"peerDependencies": {
"jquery": ">=1.7.2"
},
"devDependencies": {
"jquery": ">=1.7.2",
"eslint": "^4.19.1",
"eslint-config-ma": "^1.0.1",
"postcss": "^8.4.7",
"postcss-scss": "^4.0.3",
"stylelint": "^14.0.0",
"stylelint-config-ma": "^1.1.9"
}
}