-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.86 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.86 KB
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
77
78
79
80
81
82
83
84
{
"name": "@smoothjs/cli",
"version": "0.1.8",
"description": "CLI tool for SmoothJS.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register \"./tests/*.spec.ts\" \"./tests/**/*.spec.ts\"",
"build": "rimraf build && tsc -p tsconfig.json && copyfiles -u 2 \"src/templates/*\" build/templates",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"commit": "git-cz",
"release": "np"
},
"engines": {
"node": ">=10"
},
"bin": {
"smoothjs": "./bin/cli"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"AbdallahMohammed <abdallah.r660@gmail.com>"
],
"license": "MIT",
"files": [
"build/",
"bin/"
],
"bugs": {
"url": "https://github.com/smoothjs/cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/smoothjs/cli"
},
"homepage": "https://github.com/smoothjs",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"dependencies": {
"@smoothjs/event-emitter": "^0.1.0",
"@smoothjs/smooth": "^0.1.2",
"ajv": "~8.5.0",
"cli-spinner": "^0.2.10",
"colors": "^1.4.0",
"commander": "~7.2.0",
"is-git-url": "^1.0.0",
"lodash.compact": "^3.0.1",
"lodash.flattendeep": "^4.4.0"
},
"devDependencies": {
"@types/mocha": "8.2.2",
"@types/node": "14.17.1",
"@types/require-all": "3.0.2",
"copyfiles": "2.4.1",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"japa": "3.1.1",
"mocha": "8.4.0",
"np": "7.5.0",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"ts-node": "10.0.0",
"typescript": "4.3.2"
}
}