-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "freelancer",
"version": "0.1.7",
"description": "An implementation of on-the-fly defined WebWorkers that are created inline using data URIs, rather than separate physical files — for the benefit of all humanity..",
"main": "dist/freelancer.js",
"jsnext:main": "src/freelancer.js",
"scripts": {
"spec": "ava",
"lint": "xo",
"test": "npm run lint && npm run spec",
"build": "webpack",
"watch": "webpack --config example/webpack.config.js --watch",
"create": "mkdir -p example/images && webpack --config example/webpack.config.js && babel example/tools/autocrop.js | node",
"start": "npm run create && babel example/server/default.js | node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wildhoney/Freelancer.git"
},
"keywords": [
"webworker",
"webworker",
"webworkers",
"sharedworker",
"concurrency",
"concurrent"
],
"author": "Adam Timberlake <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Wildhoney/Freelancer/issues"
},
"homepage": "https://github.com/Wildhoney/Freelancer#readme",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-register": "^6.22.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"jimp": "^0.2.27",
"opener": "^1.4.2",
"sinon": "^1.17.7",
"webpack": "^2.2.1",
"xo": "^0.17.1"
},
"ava": {
"files": [
"tests/*.test.js"
],
"babel": "inherit",
"require": [
"babel-register",
"./tests/helpers/mock-workers.js"
]
},
"xo": {
"space": 4,
"parser": "babel-eslint",
"esnext": true,
"globals": [
"window",
"self",
"Blob",
"URL",
"Worker",
"SharedWorker"
],
"rules": {
"padded-blocks": "off",
"constructor-super": "off",
"object-curly-spacing": [
2,
"always"
],
"no-unused-expressions": "off",
"import/prefer-default-export": "off",
"no-duplicate-imports": "off"
}
}
}