-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 803 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 803 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
{
"name": "@enspirit/rescript-execa",
"version": "2.0.0",
"description": "ReScript bindings for Execa.js",
"main": "src/Execa.bs.js",
"homepage": "https://github.com/enspirit/rescript-execa#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/enspirit/rescript-execa.git"
},
"author": "ygu",
"license": "ISC",
"keywords": [
"rescript",
"execa"
],
"scripts": {
"prepare": "npm run re:build",
"re:build": "rescript build -with-deps",
"re:start": "rescript build -w",
"re:clean": "rescript clean",
"test": "jest"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"jest": "^24.8.0",
"rescript": "^9.1.4"
},
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"execa": "^3.2.0"
}
}