-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "@emphori/fui",
"version": "0.2.0",
"description": "A functional UI framework",
"keywords": [
"functional",
"user",
"interface",
"framework"
],
"author": "Emphori (https://emphori.co)",
"contributors": [
"Iain Reid <iainreid382@gmail.com> (https://chaff.land)"
],
"homepage": "https://github.com/Emphori/fui#readme",
"license": "MIT",
"main": "lib/fui.js",
"type": "module",
"exports": {
"./globals": "./lib/shared/globals.js",
"./html": "./lib/shared/html.js",
"./svg": "./lib/shared/svg.js"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib",
"test": "karma start karma.conf.cjs"
},
"devDependencies": {
"@emphori/eslint-config": "^0.1.7",
"eslint": "^6.7.0",
"karma": "^6.3.14",
"karma-coverage-istanbul-instrumenter": "^1.0.2",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^2.0.0",
"karma-should": "^1.0.0",
"mocha": "^7.1.1",
"should": "^13.2.3"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@emphori",
"rules": {
"no-empty-function": "off",
"no-param-reassign": "off"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Emphori/fui.git"
},
"bugs": {
"url": "https://github.com/Emphori/fui/issues"
}
}