-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "calque",
"description": "📑 a helper library for building web interfaces using 🍦vanilla JavaScript",
"version": "0.0.46",
"main": "dist/calque.mjs",
"scripts": {
"build": "npm run lint && npm run test && npm run transpiler && npm run copy && npm run uglify",
"lint": "eslint calque.js",
"test": "jest",
"transpiler": "babel calque.js --out-dir dist --presets=@babel/env",
"copy": "cp calque.js dist/calque.mjs",
"uglify": "mkdir -p dist/ && uglifyjs dist/calque.js -m -o dist/calque.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/danielmascena/calque.git"
},
"keywords": [
"Template Strings",
"Tagged Templates",
"Utility Function",
"JavaScript Library",
"Vanilla JavaScript",
"EcmaScript",
"HTML-in-JS",
"JavaScript Component",
"Web Components"
],
"author": "Daniel Mascena <danielmascena@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielmascena/calque/issues"
},
"homepage": "https://github.com/danielmascena/calque",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-plugin-wc": "^1.0.0",
"mocha": "^6.1.4",
"uglify-js": "^3.4.9"
}
}