-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 865 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": "sum-of-primes",
"version": "1.0.0",
"description": "Sum of all primes upto 1000",
"main": "index.js",
"scripts": {
"transpile": "./node_modules/.bin/tsc -p .",
"test": "npm run transpile && ./node_modules/.bin/mocha -R spec ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-bull/sum-of-primes.git"
},
"author": "David Turnbull",
"license": "ISC",
"bugs": {
"url": "https://github.com/t-bull/sum-of-primes/issues"
},
"homepage": "https://github.com/t-bull/sum-of-primes#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"tslint": "^4.4.2",
"typescript": "^2.2.1"
},
"dependencies": {
"@types/lodash": "^4.14.53",
"@types/node": "^7.0.5",
"lodash": "^4.17.4"
}
}