-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "fynpo",
"version": "1.0.0",
"description": "A node.js JavaScript monorepo manager",
"main": "index.js",
"homepage": "https://www.electrode.io/fynpo/",
"private": true,
"scripts": {
"test": "fynpo run test --stream",
"ci:check": "fynpo run ci:check --stream",
"coverage": "fynpo run coverage --stream",
"lint": "fynpo run lint --stream",
"bootstrap": "fynpo",
"install": "fynpo",
"testing": "cd testing/monorepo-test && npm run clean-test",
"prepublishOnly": "npm run testing"
},
"files": [
"packages",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/fynpo.git"
},
"keywords": [
"monorepo"
],
"author": "Walmart GTP.js Team and Contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/electrode-io/fynpo/issues"
},
"devDependencies": {
"fynpo": "^1.1.35"
},
"fyn": {
"devDependencies": {
"@fynpo/base": "--no-fyn-local",
"fyn": "--no-fyn-local",
"fynpo": "--no-fyn-local"
}
}
}