-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 881 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
{
"name": "riot-ssr",
"version": "1.1.6",
"description": "Synchronous/Asynchronous server-side rendering of RiotJS tags",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run testonly",
"testonly": "mocha test/specs.js",
"testonly-watch": "mocha -w test/specs.js",
"lint": "standard"
},
"standard": {
"ignore": [
"node_modules/**"
]
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"keywords": [
"riotjs",
"riot",
"ssr",
"server side rendering"
],
"author": {
"name": "Nick Gavrilov",
"url": "https://github.com/ilearnio"
},
"repository": {
"type": "git",
"url": "https://github.com/ilearnio/riot-ssr.git"
},
"license": "MIT",
"dependencies": {
"riot": "^2.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}