-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 999 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
40
41
42
43
44
{
"name": "es6-dom",
"description": "Simple DOM manipulation object for modern browser using plain javascript and ES6 module syntax",
"author": "Nickel Jianhui Zhu <[email protected]>",
"version": "1.1.2",
"license": "MIT",
"private": false,
"url": "https://github.com/nickeljew/es6-dom",
"homepage": "https://github.com/nickeljew/es6-dom",
"keywords": [
"dom",
"DocReady",
"addClass",
"removeClass",
"hasClass",
"toggleClass",
"hasClass",
"offset",
"nodesBySelector",
"nodeBySelector",
"nodeById",
"es6"
],
"main": "./lib/dom.js",
"scripts": {},
"babel": {
"plugins": [],
"presets": [
"@babel/preset-env"
]
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"grunt": "^1.4.0",
"grunt-babel": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nickeljew/es6-dom.git"
}
}