-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "teleprint",
"description": "Print HTML like a boss",
"version": "2.1.0",
"author": "Jared Abbott",
"license": "MIT",
"main": "teleprint.js",
"keywords": [
"print",
"html",
"css",
"dynamic",
"dom"
],
"repository": {
"type": "git",
"url": "git://github.com/abbotto/teleprint.git"
},
"engines": {
"node": "8"
},
"entrypoint": "teleprint.js",
"scripts": {
"build": "./dev/tool/build.sh",
"doc:commit": "./dev/tool/doc.sh --commit",
"doc:create": "./dev/tool/doc.sh --create",
"lint": "./dev/tool/lint.sh",
"start": "npm run build",
"test": "./dev/tool/test.sh"
},
"devDependencies": {
"chai": "^3.5.0",
"docdash": "^1.1.1",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-disable": "^1.0.5",
"eslint-plugin-import": "^2.18.2",
"jsdoc": "^3.6.3",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"mocha": "^6.2.0",
"uglify-es": "^3.3.9"
},
"dependencies": {}
}