-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "js-libp2p-examples",
"version": "1.0.0",
"description": "Examples of how to use js-libp2p",
"type": "module",
"scripts": {
"reset": "aegir run clean && aegir clean **/node_modules **/package-lock.json",
"test": "aegir run --concurrency 1 test",
"clean": "aegir run clean",
"build": "aegir run build",
"lint": "aegir exec aegir -- lint --files '**/*.{js,ts,jsx}' '!**/node_modules/**' '!**/dist/**'",
"lint:fix": "aegir exec aegir -- lint --files '**/*.{js,ts,jsx}' '!**/node_modules/**' '!**/dist/**' --fix",
"dep-check": "aegir run dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-examples.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-examples/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-examples#readme",
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"devDependencies": {
"aegir": "^45.0.8"
},
"workspaces": [
"examples/*"
],
"private": true
}