-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
83
{
"name": "elementree",
"version": "0.28.15",
"description": "MV* Framework with Proxy Observables and JS Template Literals",
"main": "dist/elementree.esm.js",
"unpkg": "dist/elementree.esm.js",
"types": "index.d.ts",
"scripts": {
"build": "run-s clean lint test bundle size",
"bundle": "webpack",
"clean": "rimraf dist",
"lint": "standard --fix",
"release:patch": "npm run build && npm version patch && npm publish",
"release:minor": "npm run build && npm version minor && npm publish",
"release:major": "npm run build && npm version major && npm publish",
"size": "size-limit",
"test": "ava --serial --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elementreejs/elementree.git"
},
"author": "Mark Stahl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elementreejs/elementree/issues"
},
"homepage": "https://github.com/elementreejs/elementree#readme",
"keywords": [
"html",
"framework",
"client",
"frontend",
"observables",
"template",
"template strings",
"minimal",
"small",
"tiny"
],
"devDependencies": {
"@purtuga/esm-webpack-plugin": "^1.1.1",
"@size-limit/preset-small-lib": "^2.1.4",
"ava": "^2.2.0",
"browser-env": "^3.2.6",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"standard": "^12.0.1",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"esm": "^3.2.25",
"nanohtml": "^1.7.0",
"nanomorph": "^5.4.0",
"on-change": "^1.6.2",
"onpushstate": "^0.3.1"
},
"ava": {
"babel": {
"testOptions": {
"presets": [
[
"module:ava/stage-4",
{
"modules": false
}
]
]
}
},
"require": [
"esm",
"./test/_setup.js"
]
},
"size-limit": [
{
"path": "./dist/elementree.esm.js",
"limit": "6.5 KB"
}
]
}