-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
{
"name": "@rill/marko",
"description": "Marko views for Rill.",
"version": "1.1.0",
"author": "Dylan Piercey <[email protected]>",
"browser": "client/index.js",
"bugs": "https://github.com/rill-js/marko/issues",
"devDependencies": {
"jsdom": "^11.2.0",
"jsdom-global": "^3.0.2",
"marko": "4.4.27",
"mocha": "^3.5.0",
"rill": "^5.0.15",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"homepage": "https://github.com/rill-js/marko",
"keywords": [
"isomorphic",
"marko",
"render",
"rill",
"universal"
],
"license": "MIT",
"main": "server/index.js",
"peerDependencies": {
"marko": ">=4.4.27"
},
"repository": {
"type": "git",
"url": "https://github.com/rill-js/marko"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint && node ./test/compile",
"test": "mocha -r jsdom-global/register ./test/**/*.test.js"
},
"standard": {
"ignore": [
"*.marko.js",
"test/build"
],
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}