-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@geoffcodesthings/forge-js",
"version": "1.2.1",
"description": "A complete, asynchronous Javascript SDK for the Laravel Forge API",
"main": "./lib/Forge.js",
"scripts": {
"start": "npm run dev",
"dev": "npm test",
"init": "mkdir lib",
"clean": "rm -rf lib",
"prebuild": "npm run clean && npm run init",
"build": "rollup --config",
"pretest": "npm run build",
"test": "jest"
},
"keywords": [
"forge",
"laravel",
"forge",
"sdk"
],
"author": "Geoff Selby <geoff@geoffcodesthings.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GeoffSelby/laravel-forge-javascript-sdk.git"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.1.0",
"jest": "^23.6.0",
"rollup": "^2.30.0"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/stub"
]
}
}