-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.95 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": "flexicache",
"version": "0.1.13",
"description": "",
"keywords": [],
"bugs": {
"url": "https://github.com/nextapps-de/flexicache/issues",
"email": "[email protected]"
},
"main": "flexicache.js",
"preferGlobal": true,
"bin": {},
"repository": {
"type": "git",
"url": "https://github.com/nextapps-de/flexicache.git"
},
"scripts": {
"build": "java -jar -Xms256m -Xmx4096m node_modules/google-closure-compiler/compiler.jar --compilation_level=ADVANCED_OPTIMIZATIONS --use_types_for_optimization=true --new_type_inf=true --jscomp_warning=newCheckTypes --generate_exports=true --export_local_property_definitions=true --language_in=ECMASCRIPT5_STRICT --language_out=ECMASCRIPT5_STRICT --process_closure_primitives=true --summary_detail_level=3 --warning_level=VERBOSE --emit_use_strict=true --output_manifest=log/manifest.log --output_module_dependencies=log/module_dependencies.log --property_renaming_report=log/renaming_report.log --js='flexicache.js' --js_output_file='flexicache.min.js' && echo Build Complete. && exit 0",
"test-production": "nyc --reporter=html --reporter=text mocha --timeout=3000 test --exit",
"test-develop": "nyc --reporter=html --reporter=text mocha --timeout=3000 --exit",
"test-browser": "mocha-phantomjs test/index.html",
"test": "npm run test-develop && npm run test-production && npm run test-browser",
"update": "node_modules/.bin/updtr --to non-breaking",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"flexicache.js",
"flexicache.min.js",
"test/"
],
"homepage": "https://nextapps-de.github.io/xone/",
"author": "Thomas Wilkerling",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"google-closure-compiler": "^20180204.0.0",
"phantomjs-prebuilt": "^2.1.16",
"mocha": "^5.0.4",
"mocha-phantomjs": "^4.1.0",
"nyc": "^11.5.0",
"updtr": "^2.0.0"
}
}