forked from mixpanel/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "panel",
"version": "1.1.0",
"description": "Web Components with Virtual DOM: lightweight composable web apps",
"main": "build/index.js",
"files": [
"build",
"hot",
"lib"
],
"scripts": {
"build": "babel lib -d build && cp -r build/isorender .",
"build-test": "webpack --config test/browser/webpack.config.js",
"docs": "rm -rf docs && jsdoc lib lib/isorender -t node_modules/minami -R README-API.md -d docs",
"prepublishOnly": "npm run build",
"publish-devtools": "node scripts/publish-devtools.js",
"test": "npm run build-test && npm run test-server && npm run test-browser-local",
"test-browser-local": "wct --plugin local test/browser/index.html",
"test-browser-p": "wct --plugin local --persistent test/browser/index.html",
"test-browser-sauce": "wct --plugin sauce test/browser/index.html",
"test-server": "NODE_ENV=test mocha --require babel-core/register --require babel-polyfill test/server"
},
"repository": {
"type": "git",
"url": "[email protected]:mixpanel/panel.git"
},
"keywords": [
"web components",
"virtual dom",
"react",
"snabbdom"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixpanel/panel/issues"
},
"homepage": "https://github.com/mixpanel/panel",
"dependencies": {
"cuid": "1.3.8",
"html-element": "2.2.0",
"loader-utils": "1.1.0",
"lodash.pick": "4.4.0",
"raf": "3.2.0",
"snabbdom": "0.6.1",
"snabbdom-delayed-class": "0.1.1",
"webcomponent": "1.1.0"
},
"devDependencies": {
"@webcomponents/custom-elements": "1.0.6",
"@webcomponents/shadydom": "1.0.8",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.11.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chrome-store-api": "^1.0.5",
"eslint": "4.12.1",
"eslint-config-mixpanel": "3.1.0",
"jsdoc": "^3.5.5",
"minami": "^1.1.1",
"mocha": "^2.5.3",
"promisify-node": "^0.4.0",
"readline-sync": "^1.4.7",
"web-component-tester": "5.0.0",
"webpack": "1.13.0",
"zip-folder": "^1.0.0"
}
}