-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
47
48
49
50
51
{
"name": "bianco",
"version": "1.1.0",
"description": " Modern DOM helpers library written only in es6",
"main": "index.js",
"jsnext:main": "index.next.js",
"module": "index.next.js",
"scripts": {
"prepare": "npm run build && npm test",
"lint": "eslint index.next.js test.js rollup.config.js",
"build": "rollup -c",
"test": "npm run lint && mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biancojs/bianco.git"
},
"keywords": [
"es6",
"dom",
"helpers",
"es2015",
"utility"
],
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/biancojs/bianco/issues"
},
"homepage": "https://github.com/biancojs/bianco#readme",
"devDependencies": {
"@gianlucaguarini/eslint-config": "^2.0.0",
"eslint": "^5.8.0",
"jsdom": "12.2.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"rollup": "^0.66.6",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"bianco.attr": "^1.0.0",
"bianco.css": "^1.0.0",
"bianco.dom-to-array": "0.0.10",
"bianco.events": "^1.0.0",
"bianco.force-reflow": "^1.0.0",
"bianco.images-loader": "^1.0.0",
"bianco.pointer": "^1.0.0",
"bianco.query": "^1.0.0",
"bianco.viewport": "^1.0.0"
}
}