forked from elbywan/yett
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 KB
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": "@monosolutions/yett",
"version": "0.1.17",
"description": "A small library that can prevent other scripts from executing.",
"main": "dist/yett.min.js",
"keywords": [
"block",
"blocker",
"yett"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/monosolutions/yett"
},
"bugs": {
"url": "https://github.com/monosolutions/yett/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "npm run lint && rollup -c && rollup -c --o docs/lib/yett.min.js && rollup -c --o test/scripts/yett.min.js",
"watch": "rollup -c -w -o docs/lib/yett.min.js",
"serve": "http-server -c-1 docs",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"test:blacklist": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js",
"test:whitelist": "WHITELIST=1 karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js",
"test": "npm run test:blacklist && npm run test:whitelist",
"lint": "eslint src",
"start": "npm run build && npm run test",
"prepublishOnly": "npm run build"
},
"author": "Julien Elbaz",
"contributors": [
{
"name": "Julien Elbaz"
},
{
"name": "Jonas Ohlsson Aden"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"eslint": "^6.5.1",
"http-server": "^0.11.1",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^6.2.1",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.3",
"uglify-es": "^3.3.9"
},
"dependencies": {
"mutationobserver-shim": "^0.3.5"
}
}