-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@smoothjs/session",
"version": "0.1.2",
"description": "Session module for SmoothJS.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register \"./tests/*.spec.ts\" \"./tests/**/*.spec.ts\"",
"build": "rimraf build && tsc -p tsconfig.json",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"commit": "git-cz",
"release": "np"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"AbdallahMohammed <abdallah.r660@gmail.com>"
],
"license": "MIT",
"files": [
"build/"
],
"bugs": {
"url": "https://github.com/smoothjs/session/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/smoothjs/session"
},
"homepage": "https://github.com/smoothjs",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"dependencies": {
"@smoothjs/config": "^0.1.2",
"@smoothjs/smooth": "^0.1.2",
"express-session": "^1.17.2"
},
"devDependencies": {
"@types/mocha": "8.2.2",
"@types/node": "14.17.1",
"@types/require-all": "3.0.2",
"copyfiles": "2.4.1",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"japa": "3.1.1",
"mocha": "8.4.0",
"np": "7.5.0",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"ts-node": "10.0.0",
"typescript": "4.3.2"
}
}