forked from Shopify/draggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "@shopify/draggable",
"version": "1.0.0-beta",
"private": false,
"license": "MIT",
"description": "The JavaScript Drag & Drop library your grandparents warned you about.",
"author": "Shopify <dev@shopify.com>",
"homepage": "https://github.com/Shopify/draggable#readme",
"repository": "https://github.com/Shopify/draggable",
"contributors": [
{
"name" : "Max Hoffmann",
"email" : "max.hoffmann@shopify.com"
},
{
"name" : "Curtis Dulmage",
"email" : "curtis.dulmage@shopify.com"
}
],
"bugs": {
"url": "https://github.com/Shopify/draggable/issues"
},
"keywords": [
"shopify",
"draggable",
"drag-and-drop",
"es6"
],
"main": "./lib/draggable.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run build",
"lint": "eslint ./src --max-warnings 0",
"test": "jest --config config.json",
"test-ci": "jest --config config.json --coverage"
},
"files": [
"lib/index.js"
],
"devDependencies": {
"babel-core": "6.24.1",
"babel-preset-shopify": "16.0.2",
"esdoc-standard-plugin": "^1.0.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"esdoc": "latest",
"eslint": "3.17.x",
"eslint-loader": "^1.7.1",
"eslint-plugin-shopify": "^15.2.0",
"jest": "^20.0.4",
"webpack": "^2.4.1"
},
"eslintConfig": {
"extends": "plugin:shopify/esnext",
"env": {}
},
"babel": {
"presets": [
[
"shopify/web"
]
]
}
}