-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.87 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
67
68
69
70
71
72
73
74
75
76
{
"author": "Victor Cordova",
"bin": {
"tblue": "./dist/bundle.js"
},
"name": "tblue",
"version": "0.2.1",
"description": "Trello blueprints, scaffolding for trello boards (a.k.a. yeoman for trello)",
"url": "https://github.com/victor-cordova/tblue",
"main": "dist/bundle.js",
"scripts": {
"start": "babel-node src/cli.js",
"test": "npm run test:typing && npm run test:lint && npm run test:unit",
"build": "webpack --config webpack.config.js",
"test:unit": "jest src",
"test:lint": "eslint src/",
"test:typing": "flow",
"prettier": "prettier --write src/**.js",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"dist"
],
"keywords": [
"Trello",
"Scaffolding",
"Questionnaire",
"Question",
"Template",
"Blueprint",
"Yeoman",
"cli",
"node"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"flow-bin": "^0.123.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"asciiart-logo": "^0.2.6",
"axios": "^0.19.2",
"colors": "^1.4.0",
"commander": "^5.1.0",
"figures": "^3.2.0",
"inquirer": "^7.1.0",
"opn": "^6.0.0",
"qs": "^6.9.3",
"yup": "^0.28.4"
}
}