-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "string-class",
"version": "1.0.0",
"description": "An application that extends the String class and adds more string manipulation features",
"main": "string.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node node_modules/gulp-cli/bin/gulp",
"test": "istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-vnwaiwu/string-class.git"
},
"keywords": [
"String",
"Javascript",
"Prototype",
"Oriented",
"Programming"
],
"author": "Victor Nwaiwu",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela-vnwaiwu/string-class/issues"
},
"homepage": "https://github.com/andela-vnwaiwu/string-class#readme",
"dependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"connect": "^3.5.0",
"coveralls": "^2.11.15",
"dirty-chai": "^1.2.2",
"dotenv": "^4.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.2.2",
"gulp-connect": "^5.0.0",
"gulp-load-plugins": "^1.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}