-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "paqmind.data-lens",
"version": "0.6.0",
"description": "Data lens",
"main": "lib/index.js",
"scripts": {
"eslint": "eslint src",
"mocha": "mocha --compilers js:babel/register specs",
"lint": "npm run eslint -s",
"test": "npm run mocha -s",
"webpack": "webpack --progress --profile --colors",
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel -d lib/ src/",
"release-patch": "git checkout master && npm run compile-lib && npm run webpack && git commit -a -m 'Make dist'; npm version patch && git push origin master --tags && npm publish --access=public",
"release-minor": "git checkout master && npm run compile-lib && npm run webpack && git commit -a -m 'Make dist'; npm version minor && git push origin master --tags && npm publish --access=public",
"release-major": "git checkout master && npm run compile-lib && npm run webpack && git commit -a -m 'Make dist'; npm version major && git push origin master --tags && npm publish --access=public",
"release": "npm run release-patch"
},
"repository": {
"type": "git",
"url": "https://github.com/paqmind/data-lens.git"
},
"keywords": [
"data",
"lenses"
],
"author": "Ivan Kleshnin (ivan@paqmind.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/paqmind/data-lens/issues"
},
"homepage": "https://github.com/paqmind/data-lens",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.20",
"babel-loader": "^5.2.2",
"chai": "^3.0.0",
"eslint": "^0.24.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"webpack": "^1.10.1"
},
"dependencies": {}
}