-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "interview-preparation",
"version": "0.0.0",
"description": "Code snippets to build confidence for whiteboarding",
"main": "index.js",
"scripts": {
"test": "BABEL_ENV=test mocha --compilers babel-core/register **/*.spec.js",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amangalvedhekar/interview-preparations.git"
},
"keywords": [
"es6",
"white boarding"
],
"author": "amangalvedhekar",
"license": "MIT",
"bugs": {
"url": "https://github.com/amangalvedhekar/interview-preparations/issues"
},
"homepage": "https://github.com/amangalvedhekar/interview-preparations#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"rimraf": "^2.6.2",
"bluebird": "^3.5.1"
}
}