forked from barbatus/meteor-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "meteor-typescript",
"author": "@barbatus",
"version": "0.8.10",
"license": "MIT",
"description": "TypeScript wrapper package for use with Meteor",
"keywords": [
"meteor",
"typescript",
"es6",
"es7",
"transpiler",
"transpilation",
"compilation"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel . -d dist --ignore node_modules,tests,dist,coverage",
"test:run": "tests/run.sh",
"test": "npm run build && npm run test:run",
"coverage": "cat ./tests/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/barbatus/meteor-typescript.git"
},
"bugs": {
"url": "https://github.com/barbatus/meteor-typescript/issues"
},
"dependencies": {
"diff": "^2.2.2",
"lru-cache": "^4.1.1",
"object-sizeof": "^1.2.0",
"random-js": "^1.0.3",
"typescript": "^2.8.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"jasmine-node": "^1.14.5",
"randomstring": "^1.1.4"
}
}