-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.58 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
{
"name": "@solfege/cli",
"description": "Command Line Interface of SolfegeJS",
"version": "5.3.18",
"publishConfig": {
"access": "public"
},
"author": "neolao <[email protected]>",
"repository": "https://github.com/solfegejs/cli.git",
"license": "MIT",
"files": [
"lib",
"AbstractCommand.js"
],
"main": "lib/Bundle.js",
"engines": {
"node": ">= 10"
},
"peerDependencies": {
"@solfege/application": "^4.0.7"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "6.0.0",
"minimist": "^1.2",
"pretty-error": "^2.1.1",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@solfege/application": "^4.0.7",
"eslint": "^7.5.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-solfegejs": "^1.0.17",
"jest": "^26.1.0",
"watch": "^1.0.2"
},
"scripts": {
"lint": "eslint --format=node_modules/eslint-formatter-pretty lib",
"lint:watch": "watch 'clear; echo \"\\033[41;37m LINT \\033[0m\"; npm run --silent lint' ./lib",
"test": "jest",
"test:watch": "jest --watch --coverage false",
"prepublishOnly": "npm run lint && npm test"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"extends": [
"plugin:solfegejs/recommended"
],
"env": {
"jest": true
},
"rules": {
"indent": [
"error",
2
]
}
},
"jest": {
"moduleFileExtensions": [
"js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"verbose": true,
"testURL": "http://localhost/"
}
}