-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 917 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
{
"name": "vdo",
"description": "Minimal JSX compatible html focused templating engine.",
"version": "4.2.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/DylanPiercey/vdo/issues",
"dependencies": {
"escape-html": "^1.0.3",
"flatten": "^1.0.2"
},
"devDependencies": {
"mocha": "^3.2.0",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"homepage": "https://github.com/DylanPiercey/vdo",
"keywords": [
"jsx",
"react",
"render",
"string",
"template"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DylanPiercey/vdo"
},
"scripts": {
"test": "standard --verbose | snazzy && mocha ./test/**/*.test.js"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}