-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.38 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
{
"name": "praetor",
"version": "0.1.7",
"author": "Michael Glazer",
"description": "Praetorjs - the tiny tunnel-tier library that can create & run named stored procedures (JSONPath queries & JS code). It is designed to manipulate JSON data after it is fetched & before it is rendered, in a pre-determined callable way.",
"license": "MIT",
"keywords": [
"JSONPath",
"Stored Procedures",
"JavaScript"
],
"repository": {
"type": "git",
"url": "[email protected]:magnumjs/praetor.js.git"
},
"scripts": {
"release-test": "./node_modules/jasmine-node/bin/jasmine-node --requireJsSetup ./tests/requirejs-setup.js --verbose ./tests/*-spec.js",
"dev-test": "./node_modules/karma/bin/karma start",
"build-js": "./node_modules/uglify-js/bin/uglifyjs jsonpath.js praetor.js -o praetor.min.js --source-map praetor.min.js.map --lint --preamble '/* Praeter.js 0.1.7 - Stored Procedures (JS Code blocks) for JSON results via XPath JSON\n*\n* Copyright (c) 2015 Michael Glazer (https://github.com/magnumjs/praetor.js)\n* Licensed under the MIT (MIT-LICENSE.txt) licence.\n*/' -c -m"
},
"main": "praetor.min.js",
"devDependencies": {
"jasmine-node": "latest",
"jasmine-core": "latest",
"karma-jasmine": "latest",
"karma-script-launcher": "latest",
"karma-chrome-launcher": "latest",
"karma-firefox-launcher": "latest",
"uglify-js": "latest"
}
}