-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "dragtime",
"version": "0.4.5",
"description": "Modern and clean drag and drop lists",
"repository": {
"type": "git",
"url": "https://github.com/happenslol/dragtime.git"
},
"keywords": [
"drag and drop",
"dnd",
"sortable",
"reorder",
"reorderable",
"vanillajs",
"minimal"
],
"main": "dist/dragtime.common.js",
"umd:main": "dist/dragtime.js",
"module": "dist/dragtime.mjs",
"source": "src/index.ts",
"scripts": {
"dev": "parcel examples/index.html",
"build": "microbundle build --name Dragtime",
"format": "prettier src/**/*.ts --write"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"semi": false,
"trailingComma": "all"
},
"author": "Hilmar Wiegand <[email protected]>",
"license": "MIT",
"devDependencies": {
"husky": "^1.1.3",
"microbundle": "^0.7.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.15.1",
"pretty-quick": "^1.8.0",
"sass": "^1.15.1",
"typescript": "^3.1.6"
}
}