-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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": "stripe-cli",
"version": "0.1.0",
"description": "A handful tool to create fake dataset for Stripe",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "npx babel src -d dist -s inline --copy-files",
"now-build": "echo \"Avoiding tedious building task\"",
"now": "now",
"start": "node ./bin/www",
"babel:node": "./node_modules/.bin/babel-node --presets=@babel/env",
"dev": "nodemon --exec npm run babel:node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csauvage/stripe-generator.git"
},
"keywords": [
"payement",
"stripe",
"testing",
"cli"
],
"author": "Clément SAUVAGE",
"license": "MIT",
"bugs": {
"url": "https://github.com/csauvage/stripe-generator/issues"
},
"homepage": "https://github.com/csauvage/stripe-generator#readme",
"dependencies": {
"cfonts": "^2.3.0",
"chalk": "^2.4.1",
"chance": "^1.0.17",
"clear": "^0.1.0",
"clui": "^0.3.6",
"configstore": "^4.0.0",
"figlet": "^1.2.1",
"inquirer": "^6.2.1",
"minimist": "^1.2.0",
"stripe": "^6.17.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs2": "^7.2.0",
"flow-bin": "^0.87.0",
"nodemon": "^1.18.7",
"rimraf": "^2.6.2"
}
}