-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 896 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
32
33
34
35
36
{
"name": "project-euler-solutions",
"version": "0.0.1",
"description": "Project Euler Solutions",
"main": "index.js",
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1"
},
"scripts": {
"test": "ava"
},
"ava": {
"require": "babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkmahendran09/project-euler-solutions.git"
},
"keywords": [
"Project Euler",
"Project Euler Solutions"
],
"author": "Mahendran Kannan",
"license": "ISC",
"bugs": {
"url": "https://github.com/gkmahendran09/project-euler-solutions/issues"
},
"homepage": "https://github.com/gkmahendran09/project-euler-solutions#readme",
"dependencies": {
"big-integer": "^1.6.26"
}
}