-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.37 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": "rm",
"version": "0.0.3",
"description": "RESOURCE MANAGER(RM): Helps to dynamicaly adds scripts and css to the page.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix --ignore-path .gitignore --config package.json source && echo Lint done."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RomanBurunkov/rm.git"
},
"author": "Roman Burunkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomanBurunkov/rm/issues"
},
"homepage": "https://github.com/RomanBurunkov/rm#readme",
"devDependencies": {
"del": "^5.1.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-terser": "^1.2.0",
"jest": "^26.1.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-trailing-spaces": [
"error",
{
"ignoreComments": true
}
]
}
},
"jest": {
"testMatch": ["**/test/**/*.spec.js"],
"collectCoverage": true
}
}