-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "@marhc/sayhello",
"version": "0.1.1",
"description": "Another very simple Hello World example, with submodules.",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "rimraf './dev/**/*' && npx cross-env BABEL_ENV=transpile npx babel src --out-dir dev",
"minify": "rimraf './dist/**/*' && npx cross-env BABEL_ENV=minify npx babel dev --out-dir dist",
"build": "npm run transpile && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marhc/sayHello.git"
},
"keywords": [
"hello-world"
],
"author": "Marcio Coutinho",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marhc/sayHello/issues"
},
"homepage": "https://github.com/Marhc/sayHello#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"rimraf": "^2.6.3"
}
}