-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "polobx",
"version": "0.2.0",
"description": "A state manager for polymer based in mobx",
"main": "dist/polobx.js",
"module": "src/index.js",
"scripts": {
"build": "gulp",
"lint": "eslint ./src/**/*.js",
"clean": "rm -r dist/*",
"bump:patch": "npm run clean && gulp bump --type=patch",
"bump:minor": "npm run clean && gulp bump --type=minor",
"bump:major": "npm run clean && gulp bump --type=major",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && gh-pages -d _book",
"test": "npm run build && wct"
},
"repository": {
"type": "git",
"url": "https://github.com/ivanrod/polobx.git"
},
"keywords": [
"polymer",
"web-components",
"state",
"mobx"
],
"author": "Iván Rodríguez <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^3.15.0",
"gh-pages": "^0.12.0",
"gitbook-cli": "^2.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-better-rollup": "^1.0.2",
"gulp-bump": "^2.6.1",
"gulp-git": "^2.0.0",
"gulp-rename": "^1.2.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"run-sequence": "^1.2.2",
"web-component-tester": "~4.2.2",
"web-component-tester-istanbul": "https://github.com/t2ym/web-component-tester-istanbul/tarball/0.10.1",
"yargs": "^6.6.0"
},
"dependencies": {
"mobx": "^3.1.0"
}
}