-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "palindromes",
"description": "A JavaScript module to calculate string in order to find palindromes",
"version": "0.0.1",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mehranhatami/palindromes.git"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.8.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jshint": "0.8.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "0.5.3",
"grunt-karma-coveralls": "^2.5.1",
"grunt-processhtml": "^0.3.3",
"karma": "~0.12.8",
"karma-chrome-launcher": "~0.1.0",
"karma-cli": "0.0.4",
"karma-coverage": "~0.1",
"karma-firefox-launcher": "~0.1.0",
"karma-ie-launcher": "~0.1.1",
"karma-mocha": "~0.1.0",
"karma-opera-launcher": "^0.1.0",
"karma-phantomjs-launcher": "~0.1.0",
"karma-requirejs": "~0.2.1",
"karma-safari-launcher": "~0.1.1",
"phantomjs": "^1.9.7-15",
"requirejs": "~2.1.10"
},
"scripts": {
"test": "./node_modules/.bin/karma start --browsers PhantomJS --single-run"
},
"dependencies": {
"requirejs": "^2.1.14"
}
}