-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
39 lines (39 loc) · 965 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
37
38
39
{
"name": "sentinel-js",
"version": "0.0.7",
"license": "MIT",
"description": "JS library that detects new DOM nodes using CSS selectors",
"keywords": [
"dom",
"detect",
"watch"
],
"homepage": "https://github.com/muicss/sentineljs",
"bugs": {
"url": "https://github.com/muicss/sentineljs/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/muicss/sentineljs.git"
},
"main": "dist/sentinel.umd.js",
"types": "dist/sentinel.d.ts",
"scripts": {
"build-all": "gulp build-all",
"build-dist": "gulp build-dist",
"build-examples": "gulp build-examples",
"build-tests": "gulp build-tests",
"gulp": "gulp",
"http-server": "http-server"
},
"devDependencies": {
"del": "5.1.0",
"gulp": "^4.0.2",
"gulp-jshint": "2.1.0",
"gulp-rename": "1.4.0",
"gulp-uglify": "3.0.2",
"gulp-umd": "^2.0.0",
"jshint": "^2.10.2"
}
}