-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"name": "@solfege/application",
"description": "SolfegeJS application",
"version": "4.0.7",
"author": "neolao <contact@neolao.com>",
"publishConfig": {
"access": "public"
},
"private": false,
"repository": "https://github.com/solfegejs/application.git",
"license": "MIT",
"keywords": [
"solfege"
],
"files": [
"lib"
],
"main": "lib/Application.js",
"engines": {
"node": ">= 10.8"
},
"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 && npm test"
},
"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/"
}
}