-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "@singular/common",
"version": "1.0.0-prealpha",
"description": "Singular framework common module",
"main": "dist/common.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/typescript/bin/tsc -p test/tsconfig.json && ./node_modules/mocha/bin/mocha ./test/dist/main.spec.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/singularframework/common.git"
},
"keywords": [
"singular",
"backend",
"framework",
"express",
"nodejs",
"node",
"typescript",
"common"
],
"author": "Ramtin Soltani <ramtin@chiselpowered.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/singularframework/common/issues"
},
"homepage": "https://github.com/singularframework/common#readme",
"dependencies": {
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/source-map-support": "^0.5.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
}
}