-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1016 Bytes
/
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
{
"name": "@eirikb/domdom",
"version": "9.1.0",
"description": "The proactive web front-end framework for the unprofessional",
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"test": "ava"
},
"author": {
"email": "[email protected]",
"name": "Eirik Brandtzæg"
},
"license": "MIT",
"repository": {
"url": "https://github.com/eirikb/domdom"
},
"ava": {
"extensions": [
"tsx"
],
"require": [
"ts-node/register"
]
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/domdom.esm.js",
"devDependencies": {
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"ts-node": "^10.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@eirikb/data": "^5.1.0"
}
}