-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "@solfege/dependency-injection-configuration-aware",
"description": "Make the dependency injection aware of the configuration",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"author": "neolao <[email protected]>",
"repository": "https://github.com/solfegejs/dependency-injection-configuration-aware.git",
"license": "MIT",
"files": [
"lib"
],
"main": "lib/Bundle.js",
"engines": {
"node": ">= 10"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-node": "^7.0.1",
"jest": "^24.8.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/"
}
}