-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 983 Bytes
/
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
{
"name": "@paunovic/questionnaire",
"version": "3.0.0",
"description": "Serving random questions in multiple languages has never been this easy.",
"author": "Milos Paunovic <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/MilosPaunovic/questionnaire.git"
},
"type": "module",
"main": "./src/index.js",
"files": [
"src/*",
"questions/*"
],
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint ./ --fix",
"test": "mocha test/*.js",
"build": "webpack --mode production"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0"
},
"keywords": [
"questionnaire",
"questions"
],
"bugs": {
"url": "https://github.com/MilosPaunovic/questionnaire/issues"
},
"homepage": "https://github.com/MilosPaunovic/questionnaire#readme"
}