This repository has been archived by the owner on Jun 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "betterelement",
"version": "0.4.1",
"description": "Create your own elements through client-side JavaScript.",
"main": "betterelement.js",
"scripts": {
"test": "karma start",
"lint": "xo && remark .",
"docs": "rimraf out && jsdoc . README.md --configure .jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatlittlegit/betterelement.git"
},
"author": "thatlittlegit",
"license": "MIT",
"bugs": {
"url": "https://github.com/thatlittlegit/betterelement/issues"
},
"homepage": "https://github.com/thatlittlegit/betterelement#readme",
"devDependencies": {
"chai": "^4.1.0",
"codecov": "^2.2.0",
"jsdoc": "^3.5.4",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.31",
"latodoc": "github:smeijer/latodoc",
"mocha": "^3.4.2",
"remark-cli": "^4.0.0",
"remark-preset-lint-recommended": "^3.0.0",
"rimraf": "^2.6.1",
"xo": "^0.18.2"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"__@1": "The no-var and prefer-arrow-callback are to maintain compat with",
"__@2": "pathetic older browsers and stay with ES5 :(. ~littlegit",
"xo": {
"rules": {
"no-var": 0,
"prefer-arrow-callback": 0,
"no-warning-comments": 0,
"object-shorthand": 0
},
"envs": [
"browser",
"mocha"
]
}
}