-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "displacejs",
"version": "1.4.0",
"description": "Tiny javascript library to create moveable DOM elements.",
"main": "dist/displace.min.js",
"scripts": {
"lib-build": "cross-env NODE_PATH=. webpack --config ./webpack.config.build.js && cross-env NODE_PATH=. NODE_ENV=prod webpack --config ./webpack.config.build.js",
"lib-dev": "cross-env NODE_PATH=. webpack -w --config ./webpack.config.build.js",
"server": "http-server ./docs -p 3001 -c-1",
"docs-js-watch": "cross-env NODE_PATH=. webpack -w --config ./webpack.config.docs.js",
"docs-css-watch": "node-sass -w --output-style compressed --include-path ./node_modules docs/scss/style.scss docs/style.css",
"docs-dev": "npm run docs-css-watch & npm run docs-js-watch & npm run server"
},
"engines": {
"node": ">=5.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catc/displace.git"
},
"keywords": [
"moveable",
"drag"
],
"author": "Catalin Covic",
"license": "MIT",
"bugs": {
"url": "https://github.com/catc/displace/issues"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-es2015-classes",
{
"loose": true
}
]
]
},
"homepage": "https://github.com/catc/displace",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"cross-env": "^6.0.3",
"eslint": "^2.13.1",
"highlight.js": "^9.6.0",
"http-server": "^0.9.0",
"node-sass": "^4.13.0",
"webpack": "^1.13.2"
},
"types": "./src/displace.d.ts"
}