-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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": "simplegitignore",
"version": "0.2.1",
"description": "generate your boilerplate gitignore the dead simple way (`npx simplegitignore`)",
"scripts": {
"test": "mocha src/test/*.spec.js --exit",
"start": "ts-node src/main.ts",
"build": "babel -d tmp --extensions \".ts\" src/*.ts ; webpack tmp/main.js --mode production --target node -o bin/dist.js",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"main": "bin/dist.js",
"bin": "bin/dist.js",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/node": "^10.9.4",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.3",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"homepage": "https://github.com/Thesephi/simplegitignore",
"repository": {
"type": "git",
"url": "https://github.com/Thesephi/simplegitignore.git"
},
"author": "Khang Dinh (https://kha.ngdinh.com/about-me)",
"license": "MIT",
"keywords": [
"gitignore",
"boilerplate",
"generator"
]
}