forked from goloveychuk/tsruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "ts-runtime-reflection",
"version": "1.3.0",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf dist && tsc --pretty",
"test": "npm run build && karma start",
"watch": "rimraf dist && tsc --watch --pretty",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"build:test_webpack": "webpack --config webpack.test.js",
"build:test": "rimraf ./tests/build && rimraf ./tests/emit_output && tsc -p ./tests"
},
"repository": {
"type": "git",
"url": "https://github.com/efreeti/ts-runtime-reflection.git"
},
"keywords": [
"typescript",
"reflect",
"runtime"
],
"bugs": {
"url": "https://github.com/efreeti/ts-runtime-reflection/issues"
},
"homepage": "https://github.com/efreeti/ts-runtime-reflection",
"license": "MIT",
"devDependencies": {
"@types/node": "^7.0.18",
"@types/jasmine": "^2.2.34",
"awesome-typescript-loader": "git://github.com/goloveychuk/awesome-typescript-loader#dist",
"jasmine": "~2.6.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "~1.1.0",
"karma-mocha-reporter": "~2.2.3",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~2.0.3",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"typescript": "2.8.1",
"webpack": "2.2.0"
}
}