-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "dragselect",
"description": "Easy JavaScript library for selecting and moving elements. With no dependencies. Drag-Select & Drag-And-Drop.",
"type": "module",
"private": true,
"workspaces": [
"DragSelect",
"www"
],
"scripts": {
"initial": "cd ./DragSelect && yarn && cd ../www && yarn && cd ..",
"initial:ci": "cd ./DragSelect && yarn install --frozen-lockfile && cd ../www && yarn install --frozen-lockfile && cd ..",
"start": "cd ./DragSelect && yarn start",
"test": "cd ./DragSelect && yarn test",
"test:debug": "cd ./DragSelect && yarn test:debug",
"start:docs": "cd ./www && yarn start",
"build:docs": "cd www && yarn && yarn build && cd ..",
"build:dragselect": "cd ./DragSelect && yarn build -- --ci && cd ..",
"prebuild": "yarn initial:ci",
"build": "yarn build:dragselect && yarn build:docs && node ./build.js && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThibaultJanBeyer/DragSelect.git"
},
"keywords": [
"drag",
"select",
"plain",
"js",
"javascript",
"vanillajs"
],
"author": "Thibault Jan Beyer",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/ThibaultJanBeyer/DragSelect/issues"
},
"homepage": "https://DragSelect.com/",
"devDependencies": {}
}