-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.79 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
{
"name": "@ngxp/builder",
"version": "1.1.0",
"description": "",
"main": "./dist/index",
"typings": "./dist/index",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --project .",
"compile": "tsc --project .",
"build": "run-s clean lint test compile",
"watch": "run-s clean dev",
"dev": "run-p \"compile -- --watch\" \"test -- --notify --watch\"",
"test": "jest --verbose",
"git-push": "git push --follow-tags origin master",
"new-version": "standard-version --commit-all",
"release": "run-s build new-version git-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngxp/builder.git"
},
"publishConfig": {
"access": "public"
},
"author": "Marvin Luchs <marvin@luchs.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngxp/builder/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/ngxp/builder#readme",
"devDependencies": {
"@types/faker": "4.1.2",
"@types/jest": "23.3.0",
"@types/lodash-es": "4.17.0",
"babel-jest": "23.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"faker": "4.1.0",
"jest": "23.4.1",
"npm-run-all": "4.1.5",
"rimraf": "2.6.2",
"standard-version": "4.4.0",
"ts-jest": "23.0.0",
"tslint": "5.11.0",
"tslint-config-luchsamapparat": "1.4.0",
"typescript": "2.9.2"
},
"dependencies": {
"lodash-es": "^4.17.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}