forked from electrode-io/fynpo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.33 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
55
56
57
58
59
60
{
"name": "fyn",
"version": "0.1.2",
"description": "Node Module Package Manager for the flat node_modules design",
"main": "index.js",
"scripts": {
"test": "clap check"
},
"bin": {
"fyn": "cli/fyn.js"
},
"keywords": ["node", "flat", "node_modules", "module", "package", "manager"],
"author": "Joel Chen <joel123@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jchip/fyn.git"
},
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^2.3.0",
"flat-module": "^1.0.0",
"js-yaml": "^3.9.0",
"lodash": "^4.17.4",
"log-update": "^2.3.0",
"mkdirp": "^0.5.1",
"optional-require": "^1.0.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rimraf": "^2.6.2",
"semver": "^5.3.0",
"tar": "^4.0.0",
"xenv-config": "^1.1.2",
"xsh": "^0.4.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"electrode-archetype-njs-module-dev": "^2.2.0",
"electrode-server": "^1.2.2",
"mock-require": "^2.0.2",
"xstdout": "^0.1.1"
},
"nyc": {
"all": true,
"reporter": ["lcov", "text", "text-summary"],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test",
"xout",
"tmp",
"flat-module.js"
]
},
"engines": {
"node": ">=8"
}
}