-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.14 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "songpro",
"version": "0.1.3",
"description": "",
"author": "Brian Kelly",
"license": "MIT",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"homepage": "https://github.com/SongProOrg/songpro-javascript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SongProOrg/songpro-javascript.git"
},
"bugs": {
"url": "https://github.com/SongProOrg/songpro-javascript/issues"
},
"keywords": [
"song",
"songpro"
],
"files": [
"LICENSE",
"README.md",
"dist/main",
"dist/module",
"!**/*.json",
"!**/*.spec.*",
"!**/*.tsbuildinfo"
],
"prettier": {
"singleQuote": false,
"printWidth": 100
},
"jest": {
"moduleDirectories": [
"<rootDir>/../",
"node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"preset": "ts-jest",
"rootDir": "./src",
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"scripts": {
"build": "npm run clean && npm run lint && npm run test:coverage && npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "rimraf dist coverage",
"lint": "eslint --fix src/**/*.ts",
"test": "jest",
"test:coverage": "jest --coverage --coverageDirectory=../coverage",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}