-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.84 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "Tasked",
"private": true,
"version": "0.0.1",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"grunt": "0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-coffee": "~0.13.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-cssmin": "~0.12.2",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "1.0.0",
"grunt-contrib-uglify": "~0.8.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-sails-linker": "~0.10.1",
"grunt-sync": "~0.2.3",
"include-all": "~0.1.6",
"rc": "~1.0.1",
"sails": "~0.12.0-rc3",
"sails-disk": "~0.10.7",
"sails-hook-babel": "^5.0.1",
"angular-ui-router": "^0.2.15",
"jade": ">=1.3.1",
"q": "^1.0.1",
"sails-mysql": "^0.11.0",
"sails-mongo": "^0.11.2",
"oclazyload": "^1.0.4"
},
"scripts": {
"debug": "node debug app.js",
"start": "node app.js",
"test": "jest spec"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/mbenedetto/maxi.git"
},
"author": "mbenedetto",
"license": "",
"devDependencies": {
"browserify-shim": "^3.8.10",
"grunt-browserify": "^4.0.0",
"babelify": "^6.2.0",
"grunt-contrib-jade": "^0.15.0",
"grunt-string-replace": "^1.2.0",
"babel-jest": "*",
"jest-cli": "< 0.4.0",
"grunt-run": "^0.3.0",
"grunt-strip-code": "^0.1.2"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "spec"
},
"browserify-shim": {
"jquery": "global:$"
},
"babel": {
"loose": "all",
"ignore": "node_modules"
},
"browserify": {
"transform": [
"browserify-shim"
],
"options": {
"debug": false
}
}
}