-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@yaireo/position",
"version": "1.1.1",
"homepage": "https://jsbin.com/beqosub/edit?html,css,output",
"description": "Position a DOM element at a certain X,Y or next to another element",
"keywords": [
"color",
"colors",
"picker",
"javascript",
"component",
"lightweight"
],
"license": "MIT",
"browserslist": [
">3% and ie 11",
"not dead",
"not ie < 11",
"not IE_Mob 11",
"not op_mini all"
],
"scripts": {
"start": "npm run build",
"build": "npm run clean && npm run umd && npm run header",
"umd": "babel src/position.js -o dist/position.umd.js",
"clean": "rm -rf dist && npm run makedir",
"makedir": "mkdirp dist",
"header": "headr dist/position.umd.js -o=dist/position.umd.js --version --homepage && headr src/position.js -o=dist/position.js --version --homepage",
"version": "npm run build && npm run header && git add .",
"prepublishOnly": "pkg-ok"
},
"author": {
"name": "Yair Even-Or",
"email": "[email protected]"
},
"main": "./dist/position.js",
"module": "./dist/position.js",
"browser": "./dist/position.umd.js",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yairEO/position.git"
},
"bugs": {
"url": "https://github.com/yaireo/position/issues"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-modules-umd": "^7.14.5",
"babel-preset-minify": "^0.5.1",
"headr": "^0.0.4",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
}
}