-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "deca",
"version": "0.1.1",
"description": "A minimalistic test runner",
"main": "./build/lib/suite.js",
"bin": {
"deca": "./build/lib/bin.js"
},
"scripts": {
"lint": "eslint --ext .js,.ts src",
"build": "tsc",
"pretest": "npm run lint && npm run build",
"test": "mocha --require source-map-support/register ./build/tests/tests.spec.js",
"preself-test": "npm run lint && npm run build",
"self-test": "node build/lib/bin.js --require source-map-support/register ./build/tests/tests.spec.js",
"prepublishOnly": "npm run build"
},
"files": [
"build/lib/*"
],
"author": "Seald SAS",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^9.2.2",
"source-map-support": "^0.5.21",
"typescript": "^4.6.3"
},
"dependencies": {
"arg": "^5.0.1"
}
}