forked from hugeinc/component-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@apatheticwes/flexicarousel",
"author": "wes hatch",
"license": "MIT",
"version": "0.8.7",
"description": "A micro, responsive, touch-enabled carousel.",
"main": "./dist/carousel.cjs.js",
"browser": "./dist/carousel.js",
"jsnext:main": "./dist/carousel.es6.js",
"module": "./dist/carousel.es6.js",
"repository": {
"type": "git",
"url": "git@github.com:hugeinc/component-carousel.git"
},
"keywords": [
"carousel"
],
"babel": {
"presets": [
"env"
]
},
"scripts": {
"start": "http-server ./ -p 8080 -d",
"clean": "rm -f dist/*.js*",
"build": "npm run clean && npm run lint && rollup -c",
"lint": "eslint source/js/*.js",
"test": "tape -r babel-register test/*.js",
"prepublish": "npm run build && npm test",
"preversion": "npm run build && npm test",
"travis": "npm run lint && npm test"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^3.1.1",
"http-server": "^0.9.0",
"jsdom": "^11.5.1",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-uglify": "^2.0.1",
"spy": "^1.0.0",
"tape": "^4.6.0",
"uglify-es": "^3.1.3"
}
}