forked from jaredLunde/stellar-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.16 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
{
"name": "@stellar-apps/get-default-matches",
"version": "2.0.2",
"main": "dist/cjs/index.js",
"author": "Jared Lunde <[email protected]> (https://BeStellar.co)",
"license": "MIT",
"sideEffects": false,
"module": "dist/es/index.js",
"repository": "https://github.com/jaredLunde/stellar-apps/tree/master/packages/get-default-matches",
"scripts": {
"build": "yarn run build:es && yarn run build:cjs",
"build:es": "rimraf dist/es && cross-env NODE_ENV=production BABEL_ENV=es babel src --out-dir dist/es && npm run prettier:es",
"build:cjs": "rimraf dist/cjs && cross-env NODE_ENV=production BABEL_ENV=cjs babel src --out-dir dist/cjs && npm run prettier:cjs",
"watch:es": "rimraf dist/es && cross-env NODE_ENV=production BABEL_ENV=dist/es babel src -w --out-dir dist/es",
"prettier": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma es5 --write",
"prettier:es": "yarn prettier \"dist/es/**/*.js\"",
"prettier:cjs": "yarn prettier \"dist/cjs/**/*.js\""
},
"devDependencies": {
"@stellar-apps/babel-preset-es": "^1.0.4",
"prettier": "^1.15.3"
},
"dependencies": {
"@babel/runtime": "^7.4.0"
}
}