This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.62 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
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": "underscore-aop",
"version": "0.5.4",
"description": "A fork of dojo/aspect that works w/ underscore-like libraries.",
"author": "Joshua Newman <[email protected]>",
"keywords": [
"aspect",
"underscore",
"lodash"
],
"main": "dist/underscore-aop",
"licenses": [
{
"type": "BSD3",
"url": "https://github.com/jnewman/underscore-aop/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:jnewman/underscore-aop.git"
},
"bugs": "https://github.com/jnewman/underscore-aop/issues",
"scripts": {
"dist": "grunt dist",
"lint": "grunt jshint",
"perf": "grunt perf",
"test": "grunt test"
},
"testling": {
"browsers": {
"ie": [
7,
8,
9
],
"ipad": [
6
],
"iphone": [
6
],
"firefox": [
19,
"nightly"
],
"chrome": [
25,
"canary"
],
"safari": [
5.2,
6
],
"opera": [
12,
"next"
]
},
"harness": "mocha-tdd",
"files": [
"test/**/*-node.js"
]
},
"devDependencies": {
"expect.js": "0.3.1",
"grunt": "^1.0.3",
"grunt-benchmark": "1.0.0",
"grunt-cli": "1.2.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-connect": "2.0.0",
"grunt-contrib-jshint": "2.0.0",
"grunt-contrib-uglify": "2.2.1",
"grunt-mocha-phantomjs": "4.0.0",
"grunt-mocha-test": "0.13.3",
"jshint": "^2.9.7",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"requirejs": "2.3.5",
"underscore": "1.9.1"
}
}