-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 891 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
{
"name": "project-euler-solutions",
"version": "0.9.0",
"description": "Solutions to my ProjectEuler problems",
"main": "run",
"dependencies": {
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "1.20.1",
"mocha-lcov-reporter": "0.0.1",
"istanbul": "0.3.0",
"coveralls": "2.11.1"
},
"scripts": {
"install-globals": "npm install -g istanbul",
"install": "npm run install-globals",
"test": "mocha Tests.js -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/myTerminal/project-euler-solutions.git"
},
"bugs": {
"url": "https://github.com/myTerminal/ProjectEulerSolutions/issues"
},
"homepage": "https://github.com/myTerminal/ProjectEulerSolutions#readme",
"keywords": [
"project-euler"
],
"author": "Mohammed Ismail Ansari <[email protected]>",
"license": "CC-BY-NC-SA-4.0"
}