-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@azinasili/wingman",
"version": "1.1.2",
"description": "Wingman, the popup window manager.",
"homepage": "https://github.com/azinasili/wingman",
"author": "Azin Asili <hello@azinasili.com> (azinasili.com)",
"license": "MIT",
"main": "dist/wingman.js",
"module": "dist/wingman.esm.js",
"unpkg": "dist/wingman.js",
"keywords": [
"wingman",
"popup",
"window",
"new window",
"manager"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/azinasili/wingman"
},
"bugs": {
"url": "https://github.com/azinasili/wingman/issues"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "jest tests/**/*.test.js --coverage",
"lint": "eslint \"{src,tests}/**/*.js\"",
"watch": "npm-watch",
"prepublishOnly": "npm run build"
},
"watch": {
"test": "{src,test}/**/*.js",
"build": "src/**/*.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"jest": "^22.4.3",
"npm-watch": "^0.3.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"directories": {
"test": "tests"
}
}