-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 975 Bytes
/
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
{
"name": "@polvo-labs/card-type",
"description": "Another module for card detection",
"version": "0.0.3",
"main": "dist/card-type.js",
"keywords": [
"card",
"brand",
"bandeira",
"flag",
"elo",
"hipercard",
"credit",
"brazilian",
"payment"
],
"scripts": {
"js": "simplifyify \"src/index.js\" -o \"dist/card-type.js\" -d -s CardType",
"standard": "standard *.js",
"pretest": "npm run build && npm run standard",
"test": "ava --verbose",
"build": "npm run js"
},
"ava": {
"require": [
"babel-register"
],
"babel": {
"presets": ["es2015"]
}
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"devDependencies": {
"ava": "^0.19.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"simplifyify": "^3.2.1",
"standard": "^10.0.2"
}
}