-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 839 Bytes
/
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
{
"name": "triangle",
"version": "0.1.0",
"description": "Hell Triangle Challenge for SkyHub.",
"main": "dist/index.js",
"scripts": {
"build": "babel ./src --out-dir ./dist",
"test": "mocha --reporter spec --require babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreisena/hell-triangle.git"
},
"author": "Andrei Sena <asena.dev@gmail.com> (andreisena.com.br)",
"license": "MIT",
"engines": {
"node": ">=4.3.2"
},
"engineStrict": true,
"bugs": {
"url": "https://github.com/andreisena/hell-triangle/issues"
},
"homepage": "https://github.com/andreisena/hell-triangle#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^4.0.1"
}
}