-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "brindille-component",
"umd:name": "brindille-component",
"version": "0.2.0",
"description": "Simple class to recursively wrap logic around html components.",
"unpkg": "dist/brindille-component.umd.js",
"module": "dist/brindille-component.module.js",
"main": "dist/brindille-component.js",
"source": "src/index.ts",
"types": "types/index.d.ts",
"scripts": {
"build": "microbundle",
"prepublishOnly": "npm run build",
"test": "uvu -r ts-node/register test --ignore fixtures",
"cover": "nyc npm run test"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brindille/brindille-component.git"
},
"keywords": [
"brindille",
"component",
"view"
],
"files": [
"dist",
"types"
],
"author": {
"name": "Guillaume Gouessan",
"email": "[email protected]",
"url": "https://github.com/superguigui"
},
"contributors": [
{
"name": "Valentin Daguenet",
"email": "[email protected]",
"url": "https://github.com/vdaguenet"
},
{
"name": "Laetitia Nanni",
"email": "[email protected]",
"url": "https://github.com/LaetitiaNanni"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brindille/brindille-component/issues"
},
"homepage": "https://github.com/brindille/brindille-component#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"browser-env": "^3.3.0",
"microbundle": "^0.12.3",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.3",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "4.0.2",
"uvu": "^0.3.3"
}
}