-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "@typed/test",
"version": "9.5.0",
"description": "Testing made simple.",
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"repository": "https://github.com/TylorS/typed-test",
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"typed-test": "lib/cli/cli.js"
},
"scripts": {
"build:commonjs": "rm -rf lib && tsc --outDir lib",
"build:es2015": "rm -rf lib.es2015 && tsc --module es2015 --outDir lib.es2015",
"build": "npm run build:commonjs && npm run build:es2015 && chmod +x lib/cli/cli.js",
"test": "ts-node source/cli/cli.ts",
"preversion": "npm test && npm run build",
"postversion": "npm publish"
},
"devDependencies": {
"@types/clear-require": "2.0.0",
"@types/express": "4.17.2",
"@types/glob": "7.1.1",
"@types/lodash.isequal": "4.5.5",
"@types/node": "13.1.1",
"@types/resolve": "1.14.0",
"@types/yargs": "12.0.1",
"husky": "1.0.1",
"lint-staged": "7.3.0",
"prettier": "1.14.3",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-plugin-prettier": "2.0.0",
"typescript": "3.7.4",
"webpack-cli": "3.3.10"
},
"peerDependencies": {
"typescript": "^3.1.3"
},
"dependencies": {
"@typed/assertions": "1.1.0",
"@types/webpack": "4.41.0",
"chrome-launcher": "0.12.0",
"clear-require": "2.0.0",
"express": "4.17.1",
"glob": "7.1.5",
"glob-watcher": "5.0.3",
"james-browser-launcher": "1.3.1",
"lodash.isequal": "^4.5.0",
"portfinder": "1.0.25",
"resolve": "1.14.1",
"source-map-support": "0.5.16",
"sourcemapped-stacktrace": "1.1.11",
"tempy": "0.3.0",
"ts-loader": "6.2.1",
"ts-node": "8.5.4",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typed-colors": "1.0.0",
"typed-figures": "1.0.0",
"webpack": "4.41.5",
"yargs": "12.0.2"
}
}