-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "ng-slick",
"version": "0.1.18",
"description": "angularjs directive - slick-carousel",
"author": "joje <[email protected]>",
"repository": "attrs/ng-slick",
"homepage": "https://github.com/attrs/ng-slick",
"license": "MIT",
"main": "lib/ng-slick.js",
"jsnext:main": "src/ng-slick.js",
"scripts": {
"prepublishOnly": "npm run dist",
"dist:lib": "webpack --config build/webpack.lib.config.js",
"babel": "rm -rf ./lib && babel ./src -d ./lib --source-maps inline --copy-files",
"watch": "rm -rf ./lib && babel ./src -d ./lib --source-maps inline --copy-files --watch",
"dist": "npm run babel && npm run dist:lib"
},
"peerDependencies": {
"jquery": ">= 1.2",
"angular": "1.x"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"slick-carousel": "1.7"
},
"devDependencies": {
"less": "^3.0.1",
"less-loader": "^4.1.0",
"style-loader": "^0.21.0",
"url-loader": "^0.5.9",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.7",
"eslint": "^4.19.1",
"eslint-config-esnext": "^2.0.0",
"webpack": "^3.6.0"
},
"files": [
"dist",
"lib",
"LICENSE",
"README.md"
]
}