-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.25 KB
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
{
"name": "rosid",
"version": "11.0.0",
"authors": [
"Tobias Reich <tobias@electerious.com>"
],
"description": "Just-in-time development server and static site generator",
"main": "src/index.js",
"bin": "bin/rosid",
"keywords": [
"tasks",
"copy",
"compile",
"server",
"static"
],
"license": "MIT",
"homepage": "https://github.com/electerious/Rosid",
"repository": {
"type": "git",
"url": "https://github.com/electerious/Rosid.git"
},
"files": [
"bin",
"src"
],
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc node_modules/mocha/bin/_mocha --exit"
},
"dependencies": {
"find-up": "^4.0.0",
"fs-extra": "^9.0.0",
"is-path-inside": "^3.0.0",
"junk": "^3.0.0",
"klaw": "^3.0.0",
"micromatch": "^4.0.2",
"mime": "^2.4.2",
"mri": "^1.1.4",
"nice-try": "^2.0.0",
"rename-extension": "^4.0.0",
"run-series": "^1.1.6",
"tfunk": "^3.1.0"
},
"optionalDependencies": {
"browser-sync": "^2.24.6"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.3",
"fsify": "^4.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"uuid": "^8.0.0"
},
"mocha": {
"timeout": "100000"
}
}