forked from redom/redom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "redom",
"version": "4.0.0",
"description": "Tiny turboboosted JavaScript library for creating user interfaces. 100 % test coverage!",
"main": "dist/redom.js",
"module": "esm/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "node watch",
"dist": "gh-pages -d dist",
"build-es": "rollup -c -i esm/index.js -f es -o dist/redom.es.js",
"build-js": "rollup -c -n redom -f umd -i esm/index.js -o dist/redom.js",
"build": "npm run build-es && npm run build-js",
"minify": "npm run minify-js && npm run minify-es",
"minify-js": "terser dist/redom.js -cmo dist/redom.min.js",
"minify-es": "terser dist/redom.es.js -o dist/redom.es.min.js",
"preversion": "npm run build && npm run minify && npm run test",
"postversion": "git push --tags",
"prepublish": "npm run build && npm run minify && npm run test",
"postpublish": "npm run dist",
"fixlint": "semistandard 'esm/**/*.js' 'test/test.js' --fix",
"lint": "semistandard 'esm/**/*.js' 'test/test.js'",
"test": "npm run lint && rollup -c -n redom -f cjs esm/index.js -o test/redom.js && browserify -t coverify test/index.js | tape-run | coverify",
"nocoverage": "semistandard esm/index.js && rollup -c -n redom -f cjs esm/index.js -o test/redom.js && browserify test/index.js | tape-run",
"justtest": "browserify -t coverify test/index.js | tape-run | coverify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redom/redom.git"
},
"keywords": [
"redom",
"javascript",
"tiny",
"dom",
"library"
],
"author": "Juha Lindstedt",
"license": "MIT",
"bugs": {
"url": "https://github.com/redom/redom/issues"
},
"semistandard": {
"ignore": [
"/dist/",
"/node_modules/",
"/test/"
]
},
"homepage": "https://redom.js.org",
"devDependencies": {
"browserify": "^17.0.0",
"butternut": "~0.4.6",
"coverify": "^1.5.1",
"gh-pages": "~6.1.1",
"rollup": "~4.14.0",
"marked": "~12.0.1",
"rollup-plugin-buble": "~0.19.8",
"rollup-plugin-node-resolve": "~5.2.0",
"semistandard": "~17.0.0",
"tape": "^5.7.5",
"tape-run": "^11.0.0",
"terser": "~5.30.3"
},
"dependencies": {},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/redom",
"logo": "https://opencollective.com/redom/logo.txt"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/redom"
},
"types": "index.d.ts"
}