-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "simplewebworker",
"version": "1.0.0",
"description": "Simple web worker and shared worker",
"main": "run-test.js",
"directories": {
"test": "test"
},
"dependencies": {
"jsdoc": "^3.4.0"
},
"devDependencies": {
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2",
"phantomjs": "^1.9.19"
},
"scripts": {
"start": "node run-test.js SimpleWebWorker &",
"stop": "killall -SIGINT SimpleWebWorker",
"pretest": "npm start",
"test": "mocha-phantomjs http://localhost:3000 -p node_modules/phantomjs/bin/phantomjs --ignore-ssl-errors=yes --ssl-protocol=tlsv1",
"posttest": "npm stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ponsifiax/SimpleWebWorker.git"
},
"keywords": [
"worker",
"sharedworker",
"shared"
],
"author": "ponsifiax",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ponsifiax/SimpleWebWorker/issues"
},
"homepage": "https://github.com/ponsifiax/SimpleWebWorker#readme"
}