This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.68 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
{
"name": "@paperspace/client-sdk",
"version": "0.1.7",
"description": "Paperspace SDK for client-side browser environments",
"main": "dist/main.js",
"repository": "[email protected]:Paperspace/@paperspace/client-sdk.git",
"author": "https://github.com/Paperspace",
"license": "ISC",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --content-base dist/",
"test": "eslint .",
"dev": "NODE_ENV=development webpack --progress --config webpack.config.js",
"dist": "NODE_ENV=production webpack --progress --config webpack.config.js",
"postversion": "git push origin refs/tags/v\"$npm_package_version\" && echo \"✨ Successfully released version v$npm_package_version! The tag build process will publish it ✨\"",
"prettier": "prettier --single-quote --write src/**/*.js"
},
"engines": {
"node": "8.x || 9.x || 10.x || 11.x || 12.x || 13.x || 14.x || 15.x",
"yarn": "1.x"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.16.0",
"filemanager-webpack-plugin": "^2.0.5",
"husky": "^3.0.4",
"prettier": "^1.18.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^3.11.0"
}
}