-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "trivialmodels",
"version": "1.0.0-beta.9",
"description": "A trivial javascript model system, designed to be easy to build backends for.",
"main": "dist/trivialModels.js",
"dependencies": {
"bluebird": "^3.1.1",
"chai": "^3.4.1",
"chai-spies": "^0.7.1",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-clean": "^0.7.0",
"lodash": "^3.10.1",
"make-error": "^1.0.4",
"trivialdb": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify-derequire": "^0.9.4",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "^0.6.1",
"gruntify-eslint": "^1.3.0",
"mocha": "~1.18.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha test --reporter spec --recursive --compilers js:babel-core/register",
"compile": "./node_modules/.bin/grunt build",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trivialsoftware/TrivialModels.git"
},
"keywords": [
"models",
"trivial",
"orm",
"database"
],
"author": "Christopher S. Case <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trivialsoftware/TrivialModels/issues"
},
"homepage": "https://github.com/trivialsoftware/TrivialModels#readme"
}