Skip to content

Commit b1667be

Browse files
committed
More work on resolving values
1 parent 6f3d703 commit b1667be

File tree

5 files changed

+618
-227
lines changed

5 files changed

+618
-227
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "1.0.9",
44
"description": "A service that parses and reflects on the AST generated by Typescript's language service. With it, we can extract metadata such as initialization values and types, arguments and import declarations.",
55
"main": "./dist/cjs/index.js",
6+
"repository": "https://github.com/wessberg/simplelanguageservice",
67
"module": "./dist/es2015/index.js",
78
"browser": "./dist/es2015/index.js",
89
"types": "./dist/es2015/index.d.ts",
@@ -13,8 +14,7 @@
1314
"build:es2015": "tsc --module es2015 --outDir dist/es2015 -p tsconfig.dist.json",
1415
"build": "npm run build:pre && npm run build:cjs && npm run build:es2015",
1516
"test:pre": "tsc --module commonjs --target es2017 --sourceMap",
16-
"test": "NODE_ENV=TEST npm run test:pre && ava",
17-
"test:integration": "NODE_ENV=TEST npm run test:pre --integration && ava"
17+
"test": "NODE_ENV=TEST npm run test:pre && ava"
1818
},
1919
"keywords": [
2020
"ast",
@@ -29,7 +29,7 @@
2929
"@wessberg/typedetector": "^1.0.2",
3030
"ava": "^0.19.1",
3131
"typemoq": "^1.4.2",
32-
"typescript": "next"
32+
"typescript": "latest"
3333
},
3434
"dependencies": {
3535
"@wessberg/marshaller": "^1.0.5"

0 commit comments

Comments
 (0)