-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "easycodef-node",
"version": "1.0.4",
"description": "CODEF easyCodef-node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha --timeout 10000 test/**/*.ts -r ts-node/register",
"cleanup": "prettier --config ./prettier.config.js --write ./**/*.ts",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run cleanup"
}
},
"repository": {
"type": "git",
"url": "https://github.com/codef-io/easycodef-node"
},
"keywords": [
"CODEF",
"easyCodef",
"easyCodef-node"
],
"homepage": "https://developer.codef.io/",
"author": {
"name": "CODEF corp.",
"email": "tech@codef.io",
"url": "https://codef.io/"
},
"license": "MIT",
"dependencies": {
"crypto": "^1.0.1",
"hashmap": "^2.4.0",
"https": "^1.0.0",
"mocha": "^8.1.1",
"request": "^2.88.2",
"url-parse": "^1.4.7",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/mocha": "^8.0.3",
"@types/request": "^2.48.5",
"husky": "^4.2.5",
"prettier": "2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}