-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "spritz-ui",
"version": "1.1.1",
"description": "Web Component based off of the Spritz speed reading technique",
"main": "dist/spritz-ui.umd.js",
"module": "dist/spritz-ui.esm.js",
"browser": "dist/spritz-ui.umd.js",
"unpkg": "dist/spritz-ui.umd.js",
"scripts": {
"build": "rollup -c",
"build:docs": "npm run build && cp ./dist/spritz-ui.umd.js ./docs",
"coverage": "npm run test && nyc report --reporter=lcov",
"coveralls": "cat ./coverage/lcov.info | node_modules/.bin/coveralls",
"lint": "eslint .",
"test": "npm run build && nyc mocha test -r esm",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/spritz-ui.git"
},
"keywords": [],
"author": "Donnie D'Amato <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/spritz-ui/issues"
},
"homepage": "https://github.com/ddamato/spritz-ui#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"auto-changelog": "^2.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.3.0",
"esm": "^3.2.25",
"html-minifier": "^4.0.0",
"jsdom": "^16.2.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"rollup": "^2.13.1",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^6.1.0"
}
}