forked from broccolijs/broccoli-test-helper
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "broccoli-test-helper",
"version": "2.0.0",
"description": "Test helpers for BroccoliPlugins that make testing build and rebuild behavior dead simple and expect diff friendly.",
"homepage": "https://github.com/broccolijs/broccoli-test-helper",
"bugs": {
"url": "https://github.com/broccolijs/broccoli-test-helper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/broccolijs/broccoli-test-helper.git"
},
"license": "MIT",
"author": "Kris Selden",
"files": [
"dist",
"!dist/tests",
"src"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn build-src && yarn link-self && yarn build-tests",
"build-src": "tsc",
"build-tests": "tsc -p tests/tsconfig.json && multidep tests/multidep.json",
"link-self": "yarn link && yarn link broccoli-test-helper",
"lint": "tslint -p tsconfig.json && tslint -p tests/tsconfig.json",
"prepare": "yarn build",
"test": "nyc mocha ./dist/tests/*_test.js",
"watch": "concurrently --kill-others 'tsc -w' 'tsc -w -p tests/tsconfig.json' 'mocha --watch dist/tests/'"
},
"dependencies": {
"@types/tmp": "^0.0.33",
"broccoli": "^2.0.0",
"fixturify": "^0.3.2",
"fs-tree-diff": "^0.5.9",
"tmp": "^0.0.33",
"walk-sync": "^0.3.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"broccoli-fixturify": "^0.3.0",
"chai": "^4.1.2",
"concurrently": "^3.6.1",
"mocha": "^5.2.0",
"multidep": "^2.0.2",
"nyc": "^12.0.2",
"prettier": "^1.14.2",
"ts-docs-gen": "^0.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.1"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
}