-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
42
43
44
45
46
47
48
{
"name": "thread-task",
"version": "0.0.2",
"description": "Multithreaded task library for web applications",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Chris Bond <cb@clbond.org>",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"scripts": {
"build": "tsc",
"test": "rimraf coverage && cross-env NODE_ENV=development karma start --singleRun true",
"test:watch": "cross-env NODE_ENV=development karma start --singleRun false"
},
"devDependencies": {
"@types/jasmine": "^2.8.3",
"@types/node": "^8.5.7",
"chai": "^4.1.2",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.1",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-sourcemap-writer": "^0.1.2",
"karma-spec-reporter": "0.0.32",
"karma-transform-path-preprocessor": "0.0.3",
"karma-webpack": "^2.0.9",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"core-js": "^2.5.3",
"raw-loader": "^0.5.1",
"ts-loader": "^3.2.0"
},
"dependencies": {
"cross-env": "^5.1.3",
"rimraf": "^2.6.2",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}