forked from jessepollak/card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "card",
"version": "2.1.1",
"author": "Jesse Pollak <jpollak92@gmail.com>",
"description": "Card lets you add an interactive, CSS3 credit card animation to your credit card form to help your users through the process.",
"main": "lib/card.js",
"repository": {
"type": "git",
"url": "https://github.com/jessepollak/card"
},
"contributors": [
{
"name": "Jesse Pollak",
"email": "jpollak92@gmail.com"
},
{
"name": "Daniel Juhl",
"email": "danieljuhl@gmail.com"
}
],
"scripts": {
"clean": "rimraf ./lib/ && rimraf ./dist/",
"compile": "npm run clean && npm run compile:lib && npm run compile:dist",
"compile:lib": "coffee --compile -o ./lib/ ./src/coffee/card.coffee && node-sass ./src/scss/card.scss -o lib/ && replace '../scss/card.scss' './card.css' lib/card.js",
"compile:dist": "npm run env NODE_ENV=production && webpack",
"development": "webpack-dev-server --hot --inline",
"preversion": "npm run compile",
"prepublish": "npm run env NODE_ENV=production && npm run compile",
"postpublish": "git push origin master && git push --tags",
"test": "karma start --single-run --browsers PhantomJS"
},
"devDependencies": {
"bower": "~1.7.9",
"coffee-loader": "^0.7.2",
"coffee-script": "~1.10.0",
"css-loader": "^0.23.1",
"event-stream": "^3.3.1",
"glob": "^7.0.5",
"jquery": "~3.0.0",
"node-sass": "^3.8.0",
"nodemon": "~1.9.2",
"replace": "^0.3.0",
"rimraf": "^2.5.4",
"run-sequence": "~1.2.1",
"sass-loader": "^3.2.2",
"style-loader": "^0.13.1",
"underscore": "^1.8.3",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"node.extend": "~1.1.3",
"qj": "^2.0.0",
"payment": "^2.1.4"
}
}