forked from stevenlei/spacingjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "spacingjs",
"version": "1.0.7",
"description": "Measure spacing between elements on webpage.",
"main": "./src/index.ts",
"scripts": {
"build": "webpack --mode development",
"prod": "webpack --mode production",
"watch": "webpack --watch --mode development",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md}'",
"ext": "node extensions.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenlei/spacingjs.git"
},
"author": "Steven Lei",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenlei/spacingjs/issues"
},
"homepage": "https://github.com/stevenlei/spacingjs#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/webpack-env": "^1.16.3",
"babel-loader": "^8.2.2",
"typescript": "^4.4.4",
"webpack": "^5.59.0",
"webpack-cli": "^4.9.1"
},
"unpkg": "dist/bundle.js",
"jsdelivr": "dist/bundle.js"
}