-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.42 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
{
"name": "ts-project-seed",
"version": "1.2.0",
"description": "A seed project with the initial plumbing for TypeScript.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run lint && tsc -p tsconfig.json && npm run uglify && npm run browserify",
"uglify": "uglifyjs-folder dist --output dist/all.min.js --pattern \"**/*.js,!**/*min.js\"",
"browserify": "browserify -e dist/all.min.js --standalone TsProjectSeed -o dist/all.min.js",
"build:w": "tsc -p tsconfig.json -w",
"lint": "eslint src/**/*.ts --quiet",
"lint:fix": "eslint src/**/*.ts --quiet --fix",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"test:tdd": "mocha --reporter min --require ts-node/register src/**/*.spec.ts --watch",
"test": "mocha --recursive --require ts-node/register src/**/*.spec.ts",
"cover": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "https://github.com/metadevpro/ts-project-seed"
},
"keywords": [
"typescript",
"scaffolding"
],
"author": {
"name": "Pedro J. Molina",
"url": "http://pjmolina.com"
},
"license": "CC0-1.0",
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"typings",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"uglifyjs-folder": "^3.2.0"
}
}