-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@redtea/wod",
"version": "0.0.9",
"description": "Wod is a library that provide ability to spawn the web worker instance and execute any functions into it",
"main": "umd/index.js",
"publishConfig": {
"access": "public"
},
"module": "es/index.js",
"sideEffects": false,
"typings": "types/index.d.ts",
"files": [
"umd/",
"es/",
"esnext/",
"types/*"
],
"scripts": {
"build": "npm run clean && npm run ts && npm run rollup",
"ts": "tsc -d --declarationDir types/",
"rollup": "rollup -c",
"clean": "rm -rf esnext/ es/ umd/ types/",
"test:browser": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"test:unit": "BABEL_ENV=test mocha 'test/*.unit.js' --require=@babel/register --colors",
"test:all": "npm run test:browser && npm run test:unit"
},
"author": "Kirill Horoshilov <mr.hokid@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/org-redtea/wod.git",
"repository": {
"type": "git",
"url": "https://github.com/org-redtea/wod.git"
},
"bugs": {
"url": "https://github.com/org-redtea/wod/issues"
},
"keywords": [
"worker",
"threads",
"web",
"web worker",
"webworker",
"lib",
"utils",
"utilites",
"js"
],
"browserslist": [
"> 1%",
"not ie <= 10"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/register": "^7.0.0-beta.46",
"@types/node": "^9.6.7",
"browserify": "^16.2.0",
"chai": "^4.1.2",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.1.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-uglify": "^3.0.0",
"typescript": "^2.8.3"
}
}