This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "blockstack-collections",
"version": "0.1.8",
"description": "Collection data types for use with Blockstack",
"main": "lib/index",
"unpkg": "dist/blockstack-collections.js",
"scripts": {
"build": "npm run build:node && npm run build:webpack",
"build:webpack": "shx rm -rf dist/* && cross-env NODE_ENV=production webpack --mode=production",
"build:webpack:watch": "shx rm -rf dist/* && cross-env NODE_ENV=development webpack --mode=development --watch --progress --info-verbosity verbose",
"build:webpack:analyze": "shx rm -rf dist/* && cross-env NODE_ENV=production ANALYZE=true webpack --mode=production",
"start": "webpack-dev-server",
"build:node": "shx rm -rf lib && tsc",
"build:node:watch": "shx rm -rf lib && tsc --watch",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack-collection-schemas.git"
},
"author": "Ken Liao",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/blockstack/blockstack-collection-schemas/issues"
},
"homepage": "https://github.com/blockstack/blockstack-collection-schemas#readme",
"dependencies": {},
"peerDependencies": {
"blockstack": "^20.0.0-alpha.4"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"blockstack": "^20.0.0-alpha.4",
"core-js": "^3.2.1",
"cross-env": "^5.2.1",
"shx": "^0.3.2",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.5.0",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
}
}