-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "twc",
"version": "0.5.6",
"description": "Typed Web Components compiles pure TypeScript classes to native Polymer modules.",
"main": "./dist/cli.js",
"scripts": {
"lint": "tslint -p tsconfig.json",
"cover": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts -x \"*.d.ts\" -x \"*.spec.ts\" _mocha -- --compiler ts-node/register -R spec tests/tests.spec.ts",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"test": "npm run lint && mocha --require ts-node/register --ui bdd tests/tests.spec.ts"
},
"bin": {
"twc": "./dist/cli.js"
},
"author": {
"email": "draccoz+typescript@gmail.com",
"name": "Daniel \"Dracco\" Busłowicz",
"url": "https://github.com/Draccoz"
},
"license": "ISC",
"dependencies": {
"pretty": "2.0.0",
"typescript": "2.4.1"
},
"devDependencies": {
"@types/chai": "3.5.2",
"@types/chai-string": "1.1.30",
"@types/mocha": "2.2.41",
"@types/node": "7.0.33",
"@types/sinon": "2.3.2",
"chai": "3.5.0",
"chai-string": "1.4.0",
"coveralls": "3.1.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "10.7.0",
"mocha-lcov-reporter": "1.3.0",
"sinon": "2.3.6",
"ts-node": "3.1.0",
"tslint": "5.4.3"
}
}