-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
137 lines (137 loc) · 5.44 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "matreshka",
"private": true,
"version": "0.0.0-auto",
"description": "Matreshka.js framework",
"main": "matreshka.js",
"scripts": {
"test": "npm run node-cover && npm run check-coverage && npm run lint",
"node-test": "babel-node test/node-test/jasmine.js",
"node-cover": "babel-node node_modules/.bin/babel-istanbul cover test/node-test/jasmine.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"check-coverage": "babel-istanbul check-coverage --lines 95",
"develop": "CHROME_BIN=chromium-browser karma start test/karma-test/karma.conf.js",
"karma-test": "CHROME_BIN=chromium-browser karma start test/karma-test/karma.conf.js --single-run --no-auto-watch",
"karma-libraries-test": "npm run karma-test && npm run karma-test -- --dom-library=jquery-1 && npm run karma-test -- --dom-library=jquery-2 && npm run karma-test -- --dom-library=jquery-3 && npm run karma-test -- --dom-library=zepto",
"watch": "webpack --config ./webpack.config.js --watch",
"watch-browser-test": "webpack --config test/webpack-test.config.js --watch",
"lint": "eslint .",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm run deploy && npm run twit-release && semantic-release post",
"twit-release": "node tools/twit-release",
"deploy": "npm run deploy-to-git && npm run npm-deploy",
"npm-deploy-setup": "echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' >> npm/.npmrc",
"npm-compile": "shx rm -rf npm && babel src -d npm --source-maps && shx cp README.md npm/README.md && shx cp -r .git npm/.git && node ./tools/generate-package",
"npm-publish": "cd npm && npm publish && cd ..",
"npm-deploy": "npm run npm-compile && npm run npm-deploy-setup && npm run npm-publish",
"bundle": "webpack --config ./webpack.config.js",
"deploy-to-git": "shx rm -rf bundle && deploy-to-git",
"bundle-browser-test": "webpack --config test/webpack-test.config.js",
"bundle-deploy-script": "npm run bundle && npm run bundle-browser-test",
"upgrade": "ncu -u -a && yarn install"
},
"repository": {
"type": "git",
"url": "https://github.com/matreshkajs/matreshka.git"
},
"author": {
"name": "Andrey Gubanov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matreshkajs/matreshka/issues"
},
"config": {
"deployToGit": {
"repository": "https://[email protected]/matreshkajs/matreshka.git",
"branch": "gh-pages",
"folder": "bundle",
"script": "npm run bundle-deploy-script",
"beforePushScript": "git tag $npm_package_version-bundle",
"commit": "$npm_package_version",
"user": {
"email": "[email protected]",
"name": "Andrey Gubanov (his digital clone)"
}
},
"commitizen": {
"path": "cz-simple-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"homepage": "https://github.com/matreshkajs/matreshka#readme",
"devDependencies": {
"app-module-path": "^2.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-istanbul": "^0.12.2",
"babel-istanbul-loader": "^0.1.0",
"babel-loader": "^6.4.1",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-nofn": "0.0.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.23.0",
"babel-plugin-transform-es2015-computed-properties": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-object-spread-inline": "0.0.2",
"babel-polyfill": "^6.23.0",
"commitizen": "^2.9.6",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.12.0",
"cz-simple-conventional-changelog": "0.0.1",
"deploy-to-git": "0.1.1",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-loader": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-output-todo-comments": "0.0.7",
"ghooks": "^2.0.0",
"install": "^0.8.7",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "^3.2.0",
"jsdom": "^9.12.0",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-commonjs": "1.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"karma-webpack-with-fast-source-maps": "^1.10.1",
"npm-check-updates": "^2.10.4",
"npm-registry-client": "^8.1.0",
"optimist": "^0.6.1",
"semantic-release": "^6.3.2",
"shx": "^0.2.2",
"twit": "^2.2.5",
"unminified-webpack-plugin": "^1.2.0",
"validate-commit-msg": "^2.11.2",
"webpack": "^2.3.2",
"webpack-core": "^0.6.9",
"word-wrap": "^1.2.1"
}
}