-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
66 lines (66 loc) · 2.06 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
59
60
61
62
63
64
65
66
{
"name": "card",
"version": "2.5.4",
"author": "Jesse Pollak <[email protected]>",
"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": "[email protected]"
},
{
"name": "Melloware",
"email": "[email protected]"
},
{
"name": "Daniel Juhl",
"email": "[email protected]"
}
],
"scripts": {
"clean": "rimraf ./lib/ && rimraf ./dist/",
"compile": "npm run clean && npm run compile:lib && npm run compile:dist && npm run compile:styles",
"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",
"compile:styles": "node-sass ./src/scss/card.scss -o ./dist/ --output-style compressed",
"development": "webpack-dev-server --hot",
"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.8.12",
"coffee-loader": "^4.0.0",
"coffee-script": "~1.12.7",
"css-loader": "^6.7.2",
"event-stream": "^4.0.1",
"glob": "^8.0.3",
"jquery": "^3.6.0",
"node-sass": "^8.0.0",
"nodemon": "^2.0.7",
"replace": "^1.2.1",
"rimraf": "^4.0.4",
"run-sequence": "~2.2.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"underscore": "^1.12.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"node.extend": "~2.0.2",
"payment": "^2.4.6",
"qj": "^2.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}