Skip to content

Commit 3d73120

Browse files
authored
Merge pull request #25 from power-assert-js/ts2.2
chore(package): update typescript to v2.2
2 parents cb948e3 + 2320cdb commit 3d73120

File tree

3 files changed

+31
-20
lines changed

3 files changed

+31
-20
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
22
node_js:
3-
- "0.12"
43
- "4"
54
- "6"
65
- "7"

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
espower-typescript [![npm version][npm-image]][npm-url] [![build status][travis-image]][travis-url] [![Dependency Status][deps-image]][deps-url]
1+
espower-typescript
22
====
33

44
> power-assert instrumentor for TypeScript
55
6+
[![npm version][npm-image]][npm-url]
7+
![Node.js Version Support][node-version]
8+
[![build status][travis-image]][travis-url]
9+
[![Dependency Status][deps-image]][deps-url]
10+
![License][license]
11+
612
## Install
713

814
```console
@@ -11,6 +17,7 @@ $ npm install -D espower-typescript
1117

1218
## TypeScript versions
1319

20+
* espower-typescript v8.x uses TypeScript v2.2
1421
* espower-typescript v7.x uses TypeScript v2.1
1522
* espower-typescript v6.x uses TypeScript v2.0
1623
* espower-typescript v5.x uses TypeScript v1.8
@@ -72,3 +79,5 @@ Note: only `compilerOptions` field in tsconfig.json is applied.
7279
[travis-url]: https://travis-ci.org/power-assert-js/espower-typescript
7380
[deps-image]: https://david-dm.org/power-assert-js/espower-typescript.svg
7481
[deps-url]: https://david-dm.org/power-assert-js/espower-typescript
82+
[node-version]: https://img.shields.io/badge/Node.js%20support-v4,v6,v7-brightgreen.svg
83+
[license]: https://img.shields.io/npm/l/espower-typescript.svg

package.json

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,40 @@
11
{
22
"name": "espower-typescript",
3-
"version": "7.0.1",
43
"description": "power-assert instrumentor for TypeScript",
4+
"version": "7.0.1",
5+
"author": "Teppei Sato <[email protected]>",
6+
"engines": {
7+
"node": ">=4"
8+
},
59
"main": "index.js",
610
"scripts": {
711
"demo": "mocha --require './guess' test/demo.ts",
8-
"test:outdir": "cd test/test-outdir && mocha --require ../../guess test/*_test.ts",
9-
"test": "mocha --require './guess' test/*_test.ts && npm run test:outdir"
12+
"test": "mocha --require './guess' test/*_test.ts && npm run test:outdir",
13+
"test:outdir": "cd test/test-outdir && mocha --require ../../guess test/*_test.ts"
14+
},
15+
"dependencies": {
16+
"espower-source": "^2.0.0",
17+
"minimatch": "^3.0.3",
18+
"typescript": "^2.2.1",
19+
"typescript-simple": "^8.0.0"
20+
},
21+
"devDependencies": {
22+
"expect.js": "^0.3.1",
23+
"mocha": "^3.1.2",
24+
"power-assert": "^1.2.0",
25+
"react": "^15.3.2"
1026
},
27+
"homepage": "https://github.com/power-assert-js/espower-typescript",
1128
"repository": {
1229
"type": "git",
1330
"url": "https://github.com/power-assert-js/espower-typescript"
1431
},
1532
"bugs": {
1633
"url": "https://github.com/power-assert-js/espower-typescript/issues"
1734
},
18-
"homepage": "https://github.com/power-assert-js/espower-typescript",
1935
"keywords": [
2036
"power-assert",
2137
"typescript"
2238
],
23-
"author": "Teppei Sato <[email protected]>",
24-
"license": "MIT",
25-
"devDependencies": {
26-
"expect.js": "^0.3.1",
27-
"mocha": "^3.1.2",
28-
"power-assert": "^1.2.0",
29-
"react": "^15.3.2"
30-
},
31-
"dependencies": {
32-
"espower-source": "^2.0.0",
33-
"minimatch": "^3.0.3",
34-
"typescript": "~2.1.4",
35-
"typescript-simple": "^7.0.0"
36-
}
39+
"license": "MIT"
3740
}

0 commit comments

Comments
 (0)