forked from terkelg/facon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 883 Bytes
/
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
{
"name": "facon",
"version": "2.0.3",
"repository": "terkelg/facon",
"description": "Create DOM elements with manner",
"main": "dist/facon.js",
"module": "dist/facon.mjs",
"browser": "dist/facon.min.mjs",
"unpkg": "dist/facon.min.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "node builder",
"pretest": "npm run build",
"prepublishOnly": "npm run build",
"test": "tape -r esm test/*.js | tap-spec"
},
"keywords": [
"dom",
"view",
"html",
"string",
"utility",
"builder",
"element",
"factory",
"literals",
"template",
"template-literals"
],
"devDependencies": {
"esm": "^3.2.25",
"gzip-size": "^5.1.1",
"jsdom": "^16.2.1",
"mkdirplz": "1.0.1",
"pretty-bytes": "^5.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"terser": "^4.6.6"
}
}