-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "malta",
"version": "4.1.41",
"description": "Lightning builder allows to compose on the fly and update packed and full coded huge files, edit its parts as files, splitted and glued as You need.",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint --ignore-path .eslintignore .",
"precommit": "yarn lint",
"test": "NODE_PATH=. NODE_ENV=test mocha test/**/*.spec.js",
"cover": "nyc npm test && nyc report --reporter=html",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://[email protected]/fedeghe/malta.git"
},
"keywords": [
"builder",
"javascript builder",
"composer",
"javascript composer"
],
"author": "Federico Ghedina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fedeghe/malta/issues"
},
"bin": {
"malta": "src/bin.js"
},
"engines": {
"node": ">=8.17.0"
},
"devDependencies": {
"coveralls": "~3.0.2",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-utils": "^3.0.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
}
}