This repository was archived by the owner on Nov 28, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
{
"name": "peb",
"title": "Peb.js",
"version": "4.0.0-rc.1",
"main": "dist/peb.min.js",
"typings": "peb.d.ts",
"description": "Peb.js makes JS easier",
"author": "TechPot Studio <techpot-studio@yandex.com>",
"keywords": [
"techpot",
"javascript",
"js",
"peb",
"browser",
"library"
],
"bugs": {
"email": "techpot-studio@yandex.com",
"url": "https://github.com/TechPot-Studio/peb.js/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"glob": "^7.1.6",
"sass": "^1.29.0",
"sass-loader": "^10.0.5",
"style-loader": "^2.0.0",
"terser": "^5.3.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"directories": {
"doc": "docs"
},
"engines": {
"node": ">14.0.0"
},
"scripts": {
"build:minify": "terser dist/peb.min.js -c toplevel=true -m -o dist/peb.min.js",
"build:webpack": "webpack",
"build": "npm run build:webpack && npm run build:minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechPot-Studio/peb.js.git"
},
"homepage": "https://github.com/TechPot-Studio/peb.js#readme"
}