forked from olooney/deep-copy-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "deep-copy-js",
"description": "Recursive deep copy, clone, and shallow copy functions for javascript",
"version": "1.0.0",
"main": "deepCopy.js",
"homepage": "http://oranlooney.com/deep-copy-javascript",
"repository": {
"type": "git",
"url": "https://github.com/olooney/deep-copy-js.git"
},
"bugs": {
"url": "https://github.com/olooney/deep-copy-js/issues"
},
"licenses": [
{
"type": "LGPL",
"url": "https://github.com/olooney/deep-copy-js/blob/master/LICENSE.txt"
},
{
"type": "MIT",
"url": "https://github.com/olooney/deep-copy-js/blob/master/LICENSE.txt"
}
],
"dependencies": {},
"devDependencies": {
"grunt": "^0.4.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.7.0",
"grunt-karma": "^0.8.0",
"grunt-newer": "^0.7.0",
"jshint-stylish": "^0.2.0",
"karma": "^0.12.0",
"karma-chrome-launcher": "^0.1.2",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.3",
"karma-ie-launcher": "^0.1",
"karma-jasmine": "^0.1.5",
"karma-mocha-reporter": "^0.3.1",
"karma-phantomjs-launcher": "^0.1.2",
"karma-requirejs": "^0.2.1",
"karma-safari-launcher": "^0.1",
"karma-sauce-launcher": "^0.2.5",
"karma-script-launcher": "^0.1.0",
"karma-sinon": "^1.0.2",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "npm install && grunt",
"test": "test $TRAVIS_PULL_REQUEST != false && test $BROWSER != phantomjs || grunt default:travis --verbose"
}
}