-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.02 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
{
"name": "snabbmitt",
"version": "0.0.16",
"description": "Stateful components in Snabbdom using Mitt",
"main": "index.js",
"scripts": {
"test": "eslint .",
"start": "budo example/index.js --live --open"
},
"author": {
"name": "Martín Acosta",
"email": "[email protected]",
"url": "https://github.com/tinchoz49"
},
"license": "MIT",
"eslintConfig": {
"extends": "postcss",
"env": {
"browser": true,
"node": true
},
"rules": {
"max-len": 0,
"no-use-before-define": 0,
"no-shadow": 0
}
},
"dependencies": {
"mitt": "^1.1.0",
"snabbdom": "^0.6.6"
},
"devDependencies": {
"budo": "^9.4.7",
"eslint": "^3.17.1",
"eslint-config-postcss": "^2.0.2"
},
"keywords": [
"snabbdom",
"eventemitter",
"mitt",
"subtree",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/tinchoz49/snabbmitt.git"
},
"bugs": {
"url": "https://github.com/tinchoz49/snabbmitt/issues"
}
}