-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
56
57
58
59
60
{
"name": "d3-fc-switcher",
"version": "0.1.2",
"description": "html class switcher (toggling class)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"private": false,
"license": "MIT",
"author": "Dimitri Davidovi",
"scripts": {
"build": "webpack --progress --hide-modules --config src/build/webpack-config-build.js",
"dev": "webpack-dev-server --inline --hot --config src/build/webpack-config-dev.js",
"test": "karma start --single-run",
"test-dev": "karma start"
},
"keywords": [
"javascript",
"html",
"css",
"toggle class"
],
"repository": {
"type": "git",
"url": "git+https://github.com/D3-FC/switcher.git"
},
"bugs": {
"url": "https://github.com/D3-FC/switcher/issues"
},
"homepage": "https://github.com/D3-FC/switcher#readme",
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^9.6.2",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.16",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.1.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0",
"karma-typescript": "^3.0.12",
"karma-webpack": "^3.0.0",
"requirejs": "^2.3.5",
"ts-loader": "^4.2.0",
"typedoc": "^0.11.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.8.1",
"webpack": "~4.5.0",
"webpack-cli": "^2.0.14",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.0.0"
}
}