-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/ts-snippet/issues"
},
"dependencies": {
"tsutils": "^3.0.0"
},
"description": "A TypeScript snippet testing library for any test framework",
"devDependencies": {
"@cartant/tslint-config": "^2.0.0",
"@cartant/tslint-config-etc": "^2.0.0",
"@types/chai": "^4.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/tape": "^4.2.30",
"ava": "^2.0.0",
"chai": "^4.0.0",
"cpy-cli": "^3.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.0.0",
"mkdirp": "^1.0.0",
"mocha": "^9.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"tslint-etc": "^1.5.3",
"tsutils-etc": "^1.1.0",
"typescript": "~4.4.2"
},
"es2015": "./dist/esm2015/index.js",
"homepage": "https://github.com/cartant/ts-snippet",
"keywords": [
"snippet",
"test",
"testing",
"typescript"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write"
},
"main": "./dist/index.js",
"module": "./dist/esm5/index.js",
"name": "ts-snippet",
"optionalDependencies": {},
"peerDependencies": {
"typescript": "^2.1.0 || ^3.0.0 || ^4.0.0"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cartant/ts-snippet.git"
},
"scripts": {
"dist": "yarn run dist:clean && yarn run dist:build:cjs && yarn run dist:build:es2015 && yarn run dist:build:es5 && yarn run dist:copy",
"dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
"dist:build:es2015": "tsc -p tsconfig-dist-es2015.json",
"dist:build:es5": "tsc -p tsconfig-dist-es5.json",
"dist:clean": "rimraf dist",
"dist:copy": "node scripts/pack.js && cpy CHANGELOG.md LICENSE README.md dist/",
"prepare": "husky install",
"prettier": "prettier --write \"./source/**/*.{js,json,ts}\"",
"prettier:ci": "prettier --check \"./source/**/*.{js,json,ts}\"",
"lint": "tslint --project tsconfig.json source/**/*.ts",
"test": "yarn run lint && mocha -r ts-node/register ./source/*-spec.ts"
},
"types": "./dist/index.d.ts",
"version": "5.0.2"
}