This repository was archived by the owner on May 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.24 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.24 KB
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
{
"name": "hyperhtml-majinbuu",
"version": "1.0.2",
"description": "The hyperHTML majinbuu based engine",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"bundle": "echo \"hyperHTML.engine = $(asbundle esm/index.js)\" | babel --plugins=$(node -e 'console.log(require(\"./babel-plugins.json\").join(\",\"))') > ./index.js",
"build": "npm run cjs && npm run bundle && npm run min && npm run size",
"cjs": "ascjs ./esm ./cjs && sed -i 's/m.__esModule ? m.default : m/m.default/' ./cjs/index.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c",
"brotli": "cat min.js | bro | wc -c",
"test": "istanbul cover test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/hyperhtml-majinbuu.git"
},
"keywords": [
"hyperhtml",
"majinbuu",
"smart",
"diff",
"Levenshtein",
"distance"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebReflection/hyperhtml-majinbuu/issues"
},
"homepage": "https://github.com/WebReflection/hyperhtml-majinbuu#readme",
"devDependencies": {
"asbundle": "^2.4.0",
"ascjs": "^2.4.0",
"babel-cli": "^6.26.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"tressa": "^0.3.1",
"uglify-js": "^2.8.29"
},
"dependencies": {
"majinbuu": "^2.0.2"
},
"greenkeeper": {
"ignore": [
"uglify-js"
]
}
}