-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1012 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1012 Bytes
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
{
"name": "survey-engine",
"version": "1.4.3",
"description": "Implementation of the survey engine to use in typescript/javascript projects.",
"main": "index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rollup -c"
},
"keywords": [
"survey engine"
],
"author": "phev8",
"license": "ISC",
"bugs": {
"url": "https://github.com/influenzanet/survey-engine.ts/issues"
},
"homepage": "https://github.com/influenzanet/survey-engine.ts#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^29.2.0",
"jest": "^29.2.1",
"rollup": "^2.61.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^29.0.3",
"typescript": "^4.5.3"
},
"dependencies": {
"date-fns": "^2.29.3"
}
}