-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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": "worker-store",
"version": "0.0.3",
"description": "Store Container inside webworker",
"source": "src/index.js",
"module": "dist/index.es.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"engines": {
"node": "> 4",
"npm": "> 3"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "npm-run-all --silent -p build:*",
"build:main": "microbundle",
"build:integrationsreact":
"microbundle src/integrations/react.js -o react.js -f cjs",
"build:integrationspreact":
"microbundle src/integrations/preact.js -o preact.js -f cjs",
"build:worker": "microbundle src/worker.js -o worker.js -f cjs",
"dev": "microbundle watch",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit",
"semantic-release": "./node_modules/.bin/semantic-release --no-ci"
},
"files": [
"src",
"dist",
"preact.js",
"preact.js.map",
"react.js",
"react.js.map",
"worker.js",
"worker.js.map"
],
"keywords": [],
"author": "Stoyan Delev <[email protected]> (http://stoyandelev.com/)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"kcd-scripts": "^0.27.0",
"microbundle": "^0.2.4",
"npm-run-all": "^4.1.2",
"semantic-release": "^12.2.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"worker.js",
"react.js",
"preact.js",
"examples/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mutebg/WorkerStore"
},
"bugs": {
"url": "https://github.com/mutebg/WorkerStoreissues"
},
"homepage": "https://github.com/mutebg/WorkerStore#readme"
}