This repository was archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "tabit",
"version": "2.2.2",
"description": "Just javascript tabs. Use it anywhere. No dependencies. Lightweight. Customizable.",
"homepage": "https://github.com/andrey-hohlov/tabit",
"author": {
"name": "Andrey Hohlov",
"email": "andrey@hohlov.pro",
"web": "http://hohlov.pro"
},
"license": "MIT",
"main": "lib/Tabit.js",
"repository": {
"type": "git",
"url": "https://github.com/andrey-hohlov/tabit"
},
"keywords": [
"tabs"
],
"bugs": {
"url": "https://github.com/andrey-hohlov/tabit/issues"
},
"scripts": {
"dev": "webpack",
"build": "npm run test && NODE_ENV=production webpack && npm run compile",
"eslint": "eslint src/Tabit.js",
"test": "karma start karma.conf.js",
"compile": "rimraf lib/* && babel src/Tabit.js -o lib/Tabit.js",
"prepublish": "npm run test && npm run compile"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"karma": "^1.4.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"webpack": "^2.2.0"
},
"dependencies": {}
}