-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 946 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 946 Bytes
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
{
"name": "atomic-design-cli",
"version": "0.1.3",
"description": "An opinionated app structure using typescript,atomic design,redux and many more",
"main": "dist/cli.js",
"homepage": "https://github.com/oplog/ad-cli",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"build": "tsc",
"cli": "tsc && node dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "OPLOG <info@oplog.com.tr> (https://github.com/oplog)",
"license": "MIT",
"dependencies": {
"commander": "^2.15.1",
"fs-extra": "^6.0.1",
"lodash": "^4.17.10",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.116",
"@types/node": "^10.1.1",
"@types/winston": "^2.3.9",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"bin": {
"ad": "dist/cli.js"
}
}