forked from ThibaultJanBeyer/DragSelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "dragselect",
"version": "1.15.1",
"description": "easy javascript drag select functionality for your projects",
"main": "./dist/DragSelect.js",
"dependencies": {},
"scripts": {
"prestart": "npm i",
"start": "npm run open & npm run watch",
"open": "open __tests__/quicktest.html -a 'Google Chrome'",
"watch": "concurrently --kill-others \"npm run rollup:watch\" \"npm run test:watch\"",
"checkjs": "tsc --lib es6,dom --allowJs --checkJs --noEmit src/*.js",
"build": "npm run rollup && npm run test && npm run docs",
"rollup": "rollup -c",
"rollup:watch": "rollup -c -w",
"docs": "jsdoc -c jsdoc.json",
"test": "npm run checkjs && jest --detectOpenHandles",
"test:watch": "jest --watch --onlyFailures"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/compat-data": "^7.12.5",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"better-docs": "^2.3.2",
"concurrently": "^5.3.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.2",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"jsdoc": "^3.6.6",
"minami": "^1.2.3",
"prettier": "^2.1.2",
"puppeteer": "^5.4.1",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owenfar/DragSelect.git"
},
"keywords": [
"drag",
"select",
"plain",
"js",
"javascript",
"vanillajs"
],
"author": "Thibault Jan Beyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/owenfar/DragSelect/issues"
},
"homepage": "https://ThibaultJanBeyer.com/"
}