-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "codemirror-abap",
"version": "0.2.4",
"description": "ABAP mode for CodeMirror",
"scripts": {
"dev": "nodemon --watch src/ --exec npm run build --ext js,ts --ignore **/__tests__/**",
"test": "jest --config config/jest.config.js",
"build": "npm run clean && npm run build-all",
"build-all": "npm run module && npm run esm && npm run bundle",
"module": "tsc -p config/tsconfig.json",
"esm": "tsc -p config/tsconfig.json -m es6 --outDir lib-esm",
"bundle": "webpack --config config/webpack.config.js",
"postcompile": "npm run lint",
"clean": "shx rm -rf bundles lib lib-esm",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "tslint -c config/tslint.json -p config/tsconfig.json",
"publish:patch": "npm --no-git-tag-version version patch && rm -rf build && npm ci && npm run build && npm publish --access public"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint",
"pre-push": "npm test"
}
},
"main": "lib/abap.js",
"repository": {
"type": "git",
"url": "git+https://github.com/larshp/codemirror-abap.git"
},
"files": [
"lib/**/*",
"lib-esm/**/*",
"bundles/**/*"
],
"keywords": [
"ABAP",
"CodeMirror"
],
"author": "Lars Hvam Petersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/larshp/codemirror-abap/issues"
},
"homepage": "https://github.com/larshp/codemirror-abap/#readme",
"devDependencies": {
"@types/codemirror": "5.60.5",
"@types/jest": "^27.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"shx": "^0.3.4",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"codemirror": "^5.65.2"
}
}