-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "@mog13/splain",
"version": "2.1.0",
"description": "Small transformer library to create more dynamic and interesting language/sentances",
"main": "dist/splain.js",
"scripts": {
"build": "webpack",
"lint-fix": "tslint --fix src/**/*.ts",
"test": "tslint ./src/*.ts && jest --coverage --collectCoverageFrom=src/**/*.ts --collectCoverageFrom=!src/**/index.ts --collectCoverageFrom=!src/**/*.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mog13/Splain.git"
},
"author": "Morgan Owen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mog13/Splain/issues"
},
"homepage": "https://github.com/mog13/Splain#readme",
"devDependencies": {
"@babel/core": "7.8.4",
"@types/jest": "25.1.2",
"@types/node": "13.7.0",
"babel-loader": "8.0.6",
"codecov": "3.7.1",
"deepmerge": "^4.2.2",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"terser-webpack-plugin": "2.3.4",
"ts-jest": "25.2.0",
"ts-loader": "6.2.1",
"tslint": "6.0.0",
"typescript": "3.7.5",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}