-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "jschema.js",
"version": "0.5.6",
"description": "Data Modeling in JavaScript",
"main": "jschema.js",
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"jshint": "./node_modules/.bin/jshint ./src/jschema.js",
"babel": "./node_modules/.bin/babel src -d dist --presets es2015 ",
"minify": "./node_modules/.bin/uglifyjs ./dist/jschema.js -o ./dist/jschema.min.js && ./node_modules/.bin/uglifyjs ./src/jschema.js -o ./dist/jschema-es6.min.js",
"build": "npm run -s jshint && npm run -s babel && npm run -s minify",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha"
},
"keywords": [
"data",
"relational",
"json",
"javascript",
"database",
"schema",
"data modeling"
],
"author": "Brian T. Greig",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"requirejs": "^2.3.5",
"uglify-es": "^3.1.8",
"uglify-js": "^3.1.5"
},
"dependencies": {}
}