-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "jijejo-node",
"author": {
"name": "Alban Minassian",
"email": "alban.minassian@free.fr",
"url": "https://twitter.com/AlbanMinassian"
},
"description": "javascript implementation of jijejo specifications https://github.com/AlbanMinassian/jijejo-spec",
"license": "MIT",
"private": false,
"version": "1.0.8",
"type": "module",
"main": "src/index.mjs",
"scripts": {
"test": "NODE_ENV=test node node_modules/mocha/bin/_mocha",
"test:watch": "./node_modules/.bin/nodemon --config ./.nodemon.json --exec npm run test",
"coverage": "NODE_ENV=test node_modules/c8/bin/c8.js --reporter=lcov --all node node_modules/mocha/bin/_mocha",
"coverage:watch": "./node_modules/.bin/nodemon --config ./.nodemon.json --exec npm run coverage",
"lint:rslint": "rslint_cli src",
"lint:deno": "deno lint --unstable src",
"lint": "npm run lint:deno && npm run lint:rslint"
},
"repository": {
"type": "git",
"url": "https://github.com/AlbanMinassian/jijejo-node"
},
"keywords": [
"jijejo",
"utils"
],
"bugs": {
"url": "https://github.com/AlbanMinassian/jijejo-node/issues"
},
"devDependencies": {
"c8": "7.1.2",
"chai": "4.2.0",
"jijejo-spec": "1.0.5",
"mocha": "7.2.0",
"nodemon": "2.0.4"
},
"engines": {
"node": ">=14.15.1",
"npm": ">=7.1.1"
}
}