forked from ryanlfoster/vanilla-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "vanilla-modal",
"version": "1.6.5",
"description": "A dependency-free CSS-driven plain JavaScript modal written in ECMAScript 2015.",
"main": "dist/index.js",
"scripts": {
"compile": "babel ./index.js --out-file ./dist/index.js",
"watch": "babel --watch ./index.js --out-file ./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thephuse/vanilla-modal.git"
},
"keywords": [
"modal",
"ecmascript",
"harmony",
"es6",
"es2015"
],
"author": "Ben Ceglowski <bceglowski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thephuse/vanilla-modal/issues"
},
"homepage": "https://github.com/thephuse/vanilla-modal",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^7.1.1",
"babel-plugin-rename-umd-globals": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0"
}
}