forked from skatejs/skatejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"global": "skate",
"externals": {
"incremental-dom": {
"amd": "incremental-dom",
"commonjs": "incremental-dom",
"commonjs2": "incremental-dom",
"root": "IncrementalDOM"
}
},
"name": "skatejs",
"description": "Skate is a library built on top of the W3C web component specs that enables you to write functional and performant web components with a very small footprint.",
"license": "MIT",
"author": "Trey Shugart <treshugart@gmail.com> (http://treshugart.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/skatejs/skatejs"
},
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"types": "src/index.d.ts",
"keywords": [
"components",
"custom",
"custom-elements",
"elements",
"web",
"web-components"
],
"files": [
"dist",
"src"
],
"dependencies": {
"incremental-dom": "0.4.1"
},
"devDependencies": {
"@webpack-blocks/babel6": "^0.3.0",
"@webpack-blocks/webpack2": "^0.3.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"birdpoo": "0.x",
"bore": "latest",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "2.0.0",
"gitbook-cli": "^2.3.0",
"karma": "1.7.0",
"karma-chai-plugins": "0.9.0",
"karma-chrome-launcher": "2.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-opera-launcher": "1.0.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-saucelabs-launcher": "0.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"mocha": "3.4.2",
"react": "15.5.4",
"react-dom": "15.5.4",
"semantic-release": "^6.3.2",
"semistandard": "^9.0.0",
"skatejs-web-components": "5.2.1",
"typescript": "^2.1.4",
"typescript-formatter": "^5.0.0",
"webpack": "2.2.1"
},
"scripts": {
"docs:build": "gitbook install && gitbook build",
"docs:watch": "gitbook install && gitbook serve",
"prepublish": "rm -rf dist && webpack && webpack -p && webpack --config webpack.config.bundle.js && webpack -p --config webpack.config.bundle.js",
"release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run prepublish && node dist/ && semistandard && karma start --single-run --ci && npm run test:ts",
"test:ts": "tsfmt -r && tsc -p ./",
"test:watch": "karma start"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"semistandard": {
"ignore": [
"/src/polyfills/object-is.js"
],
"parser": "babel-eslint"
}
}