forked from Shopify/draggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.76 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": "@shopify/draggable",
"version": "1.0.0-beta.4",
"private": false,
"license": "MIT",
"description": "The JavaScript Drag & Drop library your grandparents warned you about.",
"author": "Shopify <[email protected]>",
"homepage": "https://github.com/Shopify/draggable#readme",
"repository": "https://github.com/Shopify/draggable",
"contributors": [
{
"name" : "Max Hoffmann",
"email" : "[email protected]"
},
{
"name" : "Curtis Dulmage",
"email" : "[email protected]"
}
],
"bugs": {
"url": "https://github.com/Shopify/draggable/issues"
},
"keywords": [
"shopify",
"draggable",
"drag-and-drop",
"es6"
],
"main": "./lib/draggable.bundle.js",
"scripts": {
"start": "concurrently \"webpack --watch\" \"cd examples && yarn build && yarn start\"",
"build": "webpack",
"watch": "webpack --watch",
"prepublish": "npm run build",
"postinstall": "cd examples && yarn",
"lint": "eslint ./src --max-warnings 0",
"test": "jest --config config.json",
"test-ci": "jest --config config.json --coverage"
},
"files": [
"lib/**/*.js"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-shopify": "^16.2.0",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"concurrently": "^3.5.1",
"core-js": "^2.5.3",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"esdoc": "^1.0.4",
"eslint": "^4.16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-shopify": "^19.0.0",
"jest": "^21.2.1",
"webpack": "^3.10.0"
},
"eslintConfig": {
"extends": "plugin:shopify/esnext",
"env": {}
},
"babel": {
"presets": [
[
"shopify/web"
]
]
}
}