-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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": "@goldinteractive/js-base",
"version": "1.1.2",
"description": "Basic javascript foundation written in ES6/2015 Vanilla JS.",
"main": "lib/base.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"sideEffects": [
"./src/init-dom.js",
"./src/utils/url.js"
],
"repository": {
"type": "git",
"url": "https://github.com/Goldinteractive/js-base.git"
},
"author": "Gold Interactive",
"license": "MIT",
"scripts": {
"build": "make build",
"dev": "make dev",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"better-docs": "^1.1.4",
"eslint": "^5.13.0",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jsdoc": "^3.5.5",
"prettier": "1.13.7",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"easing-js": "danro/easing-js",
"fetch-jsonp": "^1.1.3",
"qs": "^6.5.1",
"riot-observable": "^3.0.0",
"tiny-invariant": "^1.0.6"
},
"browserslist": [
"> 5%",
"last 2 versions",
"not IE 11"
],
"bugs": {
"url": "https://github.com/Goldinteractive/js-base/issues"
},
"homepage": "https://github.com/Goldinteractive/js-base"
}