-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.02 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
{
"name": "mp3-js-ts",
"version": "0.0.1",
"description": "",
"keywords": [],
"iife": "dist/mp3-js-ts.iife.js",
"main": "dist/mp3-js-ts.umd.js",
"module": "dist/mp3-js-ts.es2015.js",
"typings": "dist/types/mp3-js-ts.d.ts",
"files": [
"dist"
],
"author": "Dominik Thalhammer <dominik@thalhammer.it>",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -p 'tsconfig.json' 'src/**/*.ts'",
"prebuild": "rimraf dist",
"docs": "typedoc --out dist/docs --target es6 --theme minimal --exclude '**/*.spec.ts' src",
"build": "tsc && rollup -c && rimraf compiled",
"minify": "jsmin -o dist/mp3-js-ts.iife.min.js dist/mp3-js-ts.iife.js",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"modulePathIgnorePatterns": [
"models"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
},
"devDependencies": {
"@types/node": "^17.0.21",
"codelyzer": "^6.0.2",
"colors": "^1.1.2",
"jest": "^27.5.1",
"jsmin": "^1.0.1",
"lodash.camelcase": "^4.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.69.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tsc-watch": "^4.6.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.12",
"typescript": "^4.6.2"
},
"dependencies": {
"aurora-js-ts": "Thalhammer/aurora.js-ts#master"
}
}