-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 KB
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": "proofy",
"version": "0.3.6",
"description": "Proofy — A set of tools for creating and conducting experiments.",
"keywords": [
"proofy",
"experiments",
"a/b"
],
"author": "RubaXa <ibn@rubaxa.org>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "npm test -- --watchAll",
"build": "npm run ts-build",
"build-clean": "npm run git-clean",
"ts-build": "tsc",
"git-clean": "git clean -fd",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "npm run git-clean"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.35",
"acorn": "^7.2.0",
"jest": "^26.0.1",
"minimist": "^1.2.5",
"ts-jest": "^26.0.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupFilesAfterEnv": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}