-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "olap-cube",
"version": "1.0.0",
"description": "is an hypercube of data",
"main": "olap-cube.js",
"scripts": {
"browserify": "browserify -r ./${npm_package_main}:${npm_package_name} -o dist/${npm_package_name}.js",
"build": "npm run browserify; npm run minify",
"check-deps": "npm outdated",
"lint": "standa",
"minify": "cd dist; uglifyjs ${npm_package_name}.js --source-map --output ${npm_package_name}.min.js --compress --mangle -b beautify=false,preamble='\"// http://g14n.info/OLAP-cube\"'; cd -",
"postversion": "git push origin v${npm_package_version}; npm publish; git push origin master",
"test": "NODE_PATH=. tape test/**/*.js"
},
"pre-commit": [
"lint",
"test",
"check-deps"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fibo/OLAP-cube.git"
},
"keywords": [
"olap",
"data",
"pivot",
"pivot-tables",
"table",
"cube",
"data-warehouse",
"data-warehousing",
"dwh",
"report",
"business-intelligence"
],
"author": {
"name": "Gianluca Casati",
"url": "http://g14n.info"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fibo/OLAP-cube/issues"
},
"homepage": "http://g14n.info/OLAP-cube",
"devDependencies": {
"browserify": "^16.2.3",
"deep-freeze": "0.0.1",
"pre-commit": "^1.2.2",
"standa": "^12.0.1",
"strict-mode": "^1.1.3",
"tape": "^4.9.2",
"uglify-es": "^3.3.9"
},
"dependencies": {
"not-defined": "^2.1.0",
"static-props": "^1.1.2"
}
}