-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.61 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
{
"name": "solfegejs",
"description": "The Solfege framework",
"homepage": "http://solfegejs.com",
"version": "4.0.25",
"author": "neolao <contact@neolao.com>",
"private": false,
"repository": "https://github.com/solfegejs/solfege.git",
"license": "MIT",
"keywords": [
"framework",
"solfege"
],
"files": [
"lib"
],
"main": "lib/index.js",
"engines": {
"node": ">= 10"
},
"dependencies": {
"@solfege/application": "^4.0.7",
"@solfege/cli": "^5.3.18",
"@solfege/configuration": "^3.0.7",
"@solfege/configuration-yaml-loader": "^2.0.1",
"@solfege/dependency-injection": "^3.0.7",
"@solfege/dependency-injection-configuration-aware": "^1.0.2"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.0",
"watch": "^1.0.2"
},
"scripts": {
"prepare": "npm run lint",
"lint": "eslint --ignore-pattern \"**/*.test.js\" --format=node_modules/eslint-formatter-pretty lib",
"test": "jest",
"watch": "watch 'echo \"\\033[41;37m LINT \\033[0m\"; npm run --silent lint' ./lib",
"prepublish": "npm run lint"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"extends": [
"eslint:recommended",
"plugin:node/recommended"
],
"rules": {
"indent": [
"error",
2
]
}
},
"jest": {
"moduleFileExtensions": [
"js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"verbose": true,
"testURL": "http://localhost/"
}
}