-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
34
35
36
{
"name": "@told/npm-boilerplate",
"version": "1.0.4",
"description": "Npm Boilerplate",
"main": "index.ts",
"scripts": {
"test": "karma start karma.conf.js",
"coveralls": "for /f \"delims=\" %a in ('dir /b/ad \".\\lcov\\*\" ') do xcopy /I /Y \"lcov\\%a\\*\" .\\lcov && type .\\lcov\\lcovonly | node .\\node_modules\\coveralls\\bin\\coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toldsoftware/npm-boilerplate.git"
},
"keywords": [
"typescript",
"module",
"boilerplate"
],
"author": "Rick Love",
"license": "MIT",
"bugs": {
"url": "https://github.com/toldsoftware/npm-boilerplate/issues"
},
"homepage": "https://github.com/toldsoftware/npm-boilerplate#readme",
"devDependencies": {
"typescript": "^2.1.4",
"tslib": "^1.4.0",
"karma": "^1.3.0",
"karma-typescript": "^2.1.5",
"jasmine-core": "^2.4.1",
"karma-jasmine": "^1.0.2",
"@types/jasmine": "^2.5.35",
"karma-firefox-launcher": "^1.0.0",
"coveralls": "^2.11.15"
}
}