-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1007 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
{
"name": "@yellicode/cli",
"version": "1.3.0",
"description": "CLI for Yellicode - an extensible code generator.",
"keywords": [
"code generator",
"code generation",
"cli"
],
"license": "MPL-2.0",
"main": "./dist/es5/index.js",
"es2015": "./dist/es6/index.js",
"bin": {
"yellicode": "./dist/es6/index.js"
},
"repository": {
"type": "git",
"url": "github:yellicode/cli.git"
},
"dependencies": {
"@yellicode/core": "^1.3.0",
"chokidar": "^3.6.0",
"json-parser": "^1.1.5",
"lock": "^0.1.3",
"lodash": "^4.17.15",
"semver": "^5.6.0",
"typescript": "^3.1.3"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^8.0.53",
"@types/semver": "^5.5.0"
},
"scripts": {
"build:es5": "tsc",
"build:es6": "tsc -t es6 --moduleResolution node --outDir dist/es6",
"build:dist": "npm run build:es5 & npm run build:es6",
"build": "npm run build:dist",
"prepare": "npm run build:dist"
}
}