-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "start-testing",
"version": "1.0.4",
"description": "Start Testing is a lightweight Typescript Testing Library with 0 dependencies and a minimal yet flexible API to get you from concept to validation as fast as possible",
"keywords": [
"typescript",
"testing",
"painless",
"test-library",
"fast-testing",
"tdd"
],
"author": "Connor McKelvey",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/connormckelvey/start-testing.git"
},
"bugs": {
"url": "https://github.com/connormckelvey/start-testing/issues"
},
"homepage": "https://github.com/connormckelvey/start-testing#readme",
"main": "./dist/index.js",
"files": [
"dist/**/*",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"test": "npx ts-node ./scripts/runTests.ts",
"clean": "rm -rf dist",
"compile": "tsc -p ./tsconfig.build.json",
"build": "npm run clean && npm run compile"
},
"devDependencies": {
"@types/node": "^17.0.21",
"typescript": "^4.5.5",
"@types/chai": "^4.3.0",
"chai": "^4.3.6"
}
}