-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "theroomjs",
"version": "2.1.6",
"description": "a vanilla javascript plugin that allows you to outline dom elements like web inspectors",
"main": "index.js",
"scripts": {
"start": "gulp",
"build": "gulp build",
"lint": "npm run lint:standard",
"lint:standard": "standard --verbose | snazzy || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsynlms/theroomjs.git"
},
"keywords": [
"inspection",
"inspector",
"outline-dom-element",
"dom",
"outline"
],
"author": "Huseyin ELMAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsynlms/theroomjs/issues"
},
"homepage": "https://github.com/hsynlms/theroomjs#readme",
"devDependencies": {
"chalk": "^4.1.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"/dist/",
"/src/theroom.js"
]
}
}