forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1017 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1017 Bytes
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
{
"name": "@microsoft/rushell",
"version": "0.1.0",
"description": "Execute shell commands using a consistent syntax on every platform",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/rushell"
},
"main": "lib/index.js",
"typings": "dist/rushell.d.ts",
"scripts": {
"build": "gulp test --clean",
"start": "jest --watch"
},
"license": "MIT",
"dependencies": {
"@rushstack/node-core-library": "3.19.5"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.5": "0.4.5",
"@microsoft/node-library-build": "6.4.6",
"@rushstack/eslint-config": "0.5.5",
"@types/jest": "23.3.11",
"@types/node": "10.17.13",
"gulp": "~4.0.2",
"jest": "~23.6.0",
"ts-jest": "~22.4.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/src/**/*.test.ts"
]
}
}