-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.21 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
{
"name": "cardmove",
"version": "1.0.0",
"description": "It's a plugin developed with JavaScript, that allows to dynamically animate angle and perspective of card with mouseover.",
"repository": "thompsonemerson/cardmove",
"license": "MIT",
"main": "dist/cardmove.js",
"keywords": [
"cardmove",
"animation",
"css",
"js",
"card",
"move"
],
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"bannerify": "Vekat/bannerify#feature-option",
"browserify": "^13.0.0",
"standard": "^8.6.0",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"scripts": {
"build": "npm run browserify && npm run uglifyjs",
"browserify": "browserify src/cardmove.js -s CardMove -t [babelify] -p [bannerify --file .banner ] -o dist/cardmove.js",
"uglifyjs": "uglifyjs dist/cardmove.js --comments '/!/' -m screw_ie8=true -c screw_ie8=true,unused=false -o dist/cardmove.min.js",
"start": "watchify src/cardmove.js -s CardMove -t [babelify] -o dist/cardmove.js -v",
"test": "standard src/*.js",
"prepublish": "npm run build"
}
}