forked from sulu/web-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 882 Bytes
/
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
{
"name": "massive-web",
"version": "2.0.0-rc1",
"description": "Manage your js components",
"main": "js/core.js",
"repository": {
"type": "git",
"url": "https://github.com/massiveart/web-js.git"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"lint:css": "stylelint scss/**/*.scss",
"lint:css:fix": "stylelint scss/**/*.scss --fix"
},
"keywords": [
"js",
"components",
"management"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/massiveart/web-js/issues"
},
"peerDependencies": {
"jquery": ">=1.7.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-ma": "^1.0.1",
"stylelint": "^9.2.1",
"stylelint-config-ma": "^1.1.1"
}
}