-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.96 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
{
"name": "apply-html",
"version": "2.0.1",
"description": "It's `.innerHTML = ''` for the 21st century.",
"scripts": {
"build": "rm -rf dist && mkdir dist && rollup -c",
"lint": "run-s lint-*",
"lint-prettier": "prettier --ignore-path .gitignore --write \"**/*.js\"",
"lint-eslint": "eslint --ignore-path .gitignore --fix \"**/*.js\"",
"test": "nyc -r none run-s test-* && nyc report",
"test-node": "NODE_ENV=test rollup test/node.js -c | node | tap-diff",
"test-browser": "NODE_ENV=test rollup test/browser.js -c | run-headless | tap-diff",
"report": "nyc report -r text-lcov | coveralls",
"pretest": "run-s lint",
"precommit": "run-s test build && git add .",
"prepublishOnly": "run-s test build"
},
"keywords": [
"apply",
"bel",
"diff",
"dom",
"html",
"isomorphic",
"literal",
"morph",
"nano",
"patch",
"render",
"tag",
"template"
],
"author": "Shannon Moeller <me@shannonmoeller> (http://shannonmoeller.com)",
"repository": "shannonmoeller/apply-html",
"license": "MIT",
"main": "dist/apply-html.cjs.js",
"module": "dist/apply-html.es.js",
"files": [
"dist",
"*.md"
],
"dependencies": {},
"devDependencies": {
"blue-tape": "^1.0.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-whim": "^3.1.0",
"husky": "^0.14.3",
"npm-run-all": "^4.1.3",
"nyc": "^11.8.0",
"prettier": "^1.12.1",
"rollup": "^0.59.2",
"rollup-config-whim": "^2.0.0",
"run-headless": "^2.0.1",
"tap-diff": "^0.1.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"eslint-config-whim",
"eslint-config-prettier"
]
},
"nyc": {
"include": [
"src/**"
],
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": ">= 6",
"npm": ">= 3"
}
}