This repository has been archived by the owner on Mar 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.86 KB
/
package.json
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
75
76
77
78
79
80
81
82
{
"name": "aceproject",
"version": "0.2.2",
"description": "TS/JS wrapper for the AceProject API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"aceproject",
"wrapper",
"ace",
"project",
"api",
"typescript"
],
"scripts": {
"compile": "tsc -p tsconfig.json",
"test": "jest --testMatch '<rootDir>/tests/*.test.+(ts|tsx)'",
"test:ci": "npm run test-- --coverage --ci",
"lint": "eslint --format=codeframe 'src/**/*.ts'"
},
"prepublish": "npm run compile",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"**/src/**/*.{js,jsx,ts,tsx}"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"/lib/",
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/caian-org/aceproject-ts.git"
},
"author": "Caian R. Ertl <hi@caian.org>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/caian-org/aceproject-ts/issues"
},
"homepage": "https://github.com/caian-org/aceproject-ts#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"dependencies": {
"axios": "^0.19.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26"
}
}