forked from paralleldrive/riteway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "riteway",
"version": "5.0.0-rc1",
"description": "Unit tests that always supply a good bug report when they fail.",
"main": "source/index.js",
"bin": {
"riteway": "./bin/riteway"
},
"scripts": {
"lint": "eslint source && echo 'Lint complete.'",
"typecheck": "npx -p typescript tsc --rootDir . source/test.js --allowJs --checkJs --noEmit --lib es6 && echo 'TypeScript check complete.'",
"ts": "npm run -s typecheck",
"test": "node -r esm source/test",
"watch": "watch 'clear && npm run -s test && npm run -s lint' source",
"update": "updtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/riteway.git"
},
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/riteway/issues"
},
"homepage": "https://github.com/ericelliott/riteway#readme",
"devDependencies": {
"@types/node": "10.12.12",
"eslint": "5.9.0",
"typescript": "3.2.1",
"updtr": "3.1.0",
"watch": "1.0.2"
},
"dependencies": {
"esm": "3.0.84",
"tape": "4.9.1"
}
}