-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.46 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
78
79
80
81
82
83
84
{
"name": "create-elms",
"version": "1.0.10",
"description": "Create HTML elements, set attributes, add to other elements, and return an array of DOM nodes or HTML markup in a single function call",
"author": "John Hildenbiddle <http://hildenbiddle.com>",
"license": "MIT",
"homepage": "https://github.com/jhildenbiddle/create-elms",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/create-elms.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/create-elms/issues"
},
"keywords": [
"append",
"create",
"dom",
"element",
"elms",
"html",
"insert",
"javascript",
"js",
"jsdom",
"module",
"node",
"prepend"
],
"browserslist": [
"ie >= 9"
],
"files": [
"dist"
],
"main": "dist/create-elms.js",
"module": "dist/create-elms.esm.js",
"unpkg": "dist/create-elms.min.js",
"scripts": {
"prepare": "rimraf dist/* && npm run build",
"build": "rollup -c",
"lint": "eslint . && markdownlint . --ignore node_modules",
"start": "rimraf coverage/* && npm run build -- --watch",
"test": "npm run lint && mocha ./tests/server.test.js && karma start",
"test-remote": "npm run test -- --remote",
"test-watch": "karma start --auto-watch --no-single-run",
"version": "npm run build && npm test"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-loader": "^8.0.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^3.5.0",
"eslint": "^7.32.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-mocha": "^9.0.0",
"jsdom": "^17.0.0",
"karma": "^6.3.4",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-eslint": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"lodash.merge": "^4.6.1",
"markdownlint-cli": "^0.28.1",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.52.0"
}
}