This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
51 lines (51 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
47
48
49
50
51
{
"name": "gocommerce-js",
"description": "GoCommerce API client for JavaScript",
"version": "5.0.0",
"author": "Mathias Biilmann Christensen",
"bugs": {
"url": "https://github.com/netlify/gocommerce-js/issues"
},
"dependencies": {
"micro-api-client": "^2.0.0"
},
"devDependencies": {
"auto-changelog": "^1.10.2",
"babel-cli": "^6.8.0",
"babel-plugin-syntax-object-rest-spread": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^16.2.3",
"gh-release": "^3.4.0",
"jest": "^20.0.0",
"npm-run-all": "^4.1.5",
"uglify-js": "^2.6.2"
},
"files": [
"lib/",
"README.md"
],
"homepage": "https://github.com/netlify/gocommerce-js",
"keywords": [
"api",
"cli",
"commerce",
"netlify",
"static"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "netlify/gocommerce-js",
"scripts": {
"browserify": "mkdir -p browser/ && browserify src/index.js -t [ babelify --presets [ es2015 ] --plugins syntax-object-rest-spread,transform-object-rest-spread ] | uglifyjs > browser/commerce.js",
"compile": "babel --presets es2015 --plugins syntax-object-rest-spread,transform-object-rest-spread -d lib/ src/",
"prepare": "run-s compile browserify",
"prepublishOnly": "git checkout master && git push && git push --tags && gh-release",
"test": "jest src/*.test.js",
"test:watch": "jest --watch src/*.test.js",
"version": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md"
}
}