-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "htmlstock",
"version": "0.1.0",
"description": "A class based on NodeList/HTMLCollection classes that proxies some Element methods like addEventListener, remove, classList",
"main": "./src/html-stock.js",
"scripts": {
"docs": "cat readme.head.md > README.md && node_modules/.bin/jsdoc2md src/html-stock.js >> README.md",
"test": "./node_modules/mocha/bin/mocha test/**/*.spec.js",
"build": "npm test && ./node_modules/uglify-js/bin/uglifyjs ./src/html-stock.js --output=./dist/html-stock.min.js --compress --mangle --reserved=HTMLStock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clovislima/htmlstock.git"
},
"keywords": [
"NodeList",
"HTMLCollection"
],
"author": "Clovis Lima",
"license": "MIT",
"bugs": {
"url": "https://github.com/clovislima/htmlstock/issues"
},
"homepage": "https://github.com/clovislima/htmlstock#readme",
"devDependencies": {
"chai": "^3.5.0",
"jsdoc-to-markdown": "^1.3.6",
"jsdom": "^8.4.0",
"mocha": "^2.4.5",
"uglify": "^0.1.5"
}
}