-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "@jayfreestone/limelight.js",
"version": "0.0.0-semantically-released",
"description": "A tiny (and fast) JavaScript plugin that creates a spotlight around any element on the page.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"style": "styles/limelight.css",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w"
},
"author": {
"name": "Jay Freestone",
"email": "mail@jayfreestone.com",
"url": "https://www.jayfreestone.com/"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"rollup": "^1.15.4",
"rollup-plugin-browsersync": "^1.0.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"typescript": "^2.9.2"
},
"keywords": [
"spotlight",
"tour",
"walkthrough"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist/*.js",
"src/styles/limelight.css"
]
}
]
]
},
"publishConfig": {
"access": "public"
}
}