-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "threadsjs",
"version": "0.2.0",
"description": "A library to create thread behavior in js",
"author": "Kevan Davis <[email protected]>",
"keywords": [
"threads"
],
"repository": {
"type": "git",
"url": "https://github.com/kmdavis/threads"
},
"bugs": {
"url": "https://github.com/kmdavis/threads/issues"
},
"scripts": {
"clean": "rm -rf dist && rm -rf lib",
"build": "babel src --presets=es2015 --out-dir=lib && mkdir -p dist && browserify lib/index.js --outfile dist/index.js --standalone Thread && uglifyjs -c -o dist/index.min.js -- dist/index.js",
"doc": "rm -rf docs && jsdoc -r src/index.js -d docs -R README.md -c jsdoc.json",
"test": "karma start"
},
"main": "main.js",
"dependencies": {
"tiny-worker": "1.1.x"
},
"devDependencies": {
"babel-cli": "6.9.x",
"babel-eslint": "6.1.x",
"babel-preset-es2015": "6.9.x",
"babelify": "7.2.x",
"browserify": "13.1.x",
"chai-as-promised": "5.3.x",
"eslint": "2.10.x",
"eslint-config-airbnb": "9.0.x",
"jsdoc": "3.4.x",
"karma": "1.1.x",
"karma-browserify": "5.1.x",
"karma-chrome-launcher": "1.0.x",
"karma-mocha": "0.2.x",
"karma-mocha-reporter": "2.0.x",
"sinon-chai": "2.8.x",
"uglify-js": "2.7.x"
},
"engines": {
"node": ">=4.2.4",
"npm": ">=2.14.12 <3.0"
}
}