-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 976 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
{
"type": "module",
"name": "predicator",
"version": "0.0.1",
"description": "A toy project to test out creating a predicate library with TypeScript",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node --es-module-specifier-resolution=node ./dist/index.js",
"test": "ts-mocha -p test/tsconfig.test.json test/**/*.ts",
"mocha": "ts-mocha -p test/tsconfig.test.json test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PurpleMagick/predicator.git"
},
"author": "PurpleMagick",
"license": "ISC",
"bugs": {
"url": "https://github.com/PurpleMagick/predicator/issues"
},
"homepage": "https://github.com/PurpleMagick/predicator#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"chai": "^4.2.0",
"eslint": "^7.1.0",
"mocha": "^10.1.0",
"ts-mocha": "^7.0.0",
"typescript": "^3.8.3"
}
}