-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
51
52
53
54
55
56
57
{
"name": "thread",
"version": "0.0.1",
"description": "The thread class in typescript",
"main": "index.js",
"scripts": {
"realese": "webpack",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coryisbest0728/Thread.git"
},
"keywords": [
"thread",
"web workers",
"performance"
],
"author": "Cory",
"license": "MIT",
"bugs": {
"url": "https://github.com/coryisbest0728/Thread/issues"
},
"homepage": "https://github.com/coryisbest0728/Thread#readme",
"devDependencies": {
"@types/jasmine": "^2.5.38",
"@types/node": "0.0.2",
"autoprefixer": "^6.5.3",
"awesome-typescript-loader": "^3.0.0-beta.9",
"clean-webpack-plugin": "^0.1.14",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"karma-requirejs": "^1.1.0",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^1.8.0",
"postcss-import": "^9.0.0",
"precss": "^1.4.0",
"requirejs": "^2.3.2",
"source-map-loader": "^0.1.5",
"typescript": "^2.1.4",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"@types/es6-promise": "0.0.32",
"@types/log4js": "0.0.32",
"@types/reflect-metadata": "0.0.5",
"es6-promise": "^4.0.5",
"log4js": "^1.0.1",
"reflect-metadata": "^0.1.8"
}
}