-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "hermanjs",
"version": "1.0.3",
"description": "Singleton models with Backbone and possibly other frameworks",
"main": "dist/backbone-m.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"backbone": "^1.1.2",
"browserify": "^5.13.1",
"jasmine-node": "^1.14.5",
"jquery": "^2.1.3",
"watchify": "^2.4.0",
"uglify-js": "^2.4.16",
"underscore": "^1.7.0"
},
"scripts": {
"test": "jasmine-node test/ --matchall --color --autotest --watch `pwd`/src/",
"clean": "rm -r dist && mkdir dist",
"build": "npm run build:backbone:min && npm run build:backbone && npm run build:angular",
"build:backbone:min": "node_modules/browserify/bin/cmd.js src/m-for-backbone.js -s M -x backbone | uglifyjs -c > dist/backbone-m.min.js",
"build:backbone": "node_modules/browserify/bin/cmd.js src/m-for-backbone.js -s M -x backbone --debug --verbose > dist/backbone-m.js",
"build:angular": "node_modules/browserify/bin/cmd.js src/m-for-angular.js -s M --debug --verbose > dist/angular-m.js",
"watch": "watchify src/m-for-backbone.js -s M -x backbone --debug --verbose -o dist/backbone-m.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Hermanya/m.git"
},
"keywords": [
"manage",
"generate",
"model",
"management",
"orm",
"backbone",
"singleton"
],
"author": "Herman Starikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hermanya/m/issues"
},
"homepage": "https://github.com/Hermanya/m"
}