forked from ipfs-examples/js-ipfs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 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
{
"name": "js-ipfs-examples",
"version": "1.0.0",
"private": "true",
"description": "Collection of opinionated and real-world examples of how you can use js-ipfs to build things",
"keywords": [
"examples",
"js-ipfs"
],
"homepage": "https://github.com/ipfs-examples/js-ipfs-examples#readme",
"bugs": {
"url": "https://github.com/ipfs-examples/js-ipfs-examples/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-examples/js-ipfs-examples.git"
},
"license": "MIT",
"workspaces": [
"examples/*"
],
"scripts": {
"clean": "yarn run clean:examples && yarn run clean:yarn && yarn run clean:build && yarn run clean:npm",
"clean:npm": "rimraf ./**/package-lock.json ./**/node_modules",
"clean:yarn": "rimraf ./**/yarn.lock",
"clean:build": "rimraf ./**/.parcel-cache",
"clean:examples": "yarn workspaces run clean",
"test:examples": "yarn workspaces run test:example",
"test": "yarn run test:examples"
},
"devDependencies": {
"rimraf": "^3.0.2"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.11"
}
}