-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "standard-project-structure",
"version": "0.1.1",
"description": "Open Standard for Programming Project Structures",
"main": "Gruntfile.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcorp/standard-project-structure.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rcorp/standard-project-structure/issues"
},
"files": [
"generators/app",
"generators/linter",
"generators/test"
],
"homepage": "https://github.com/rcorp/standard-project-structure#readme",
"dependencies": {
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-react": "4.1.0",
"stylelint": "5.0.1",
"stylelint-config-standard": "3.0.0",
"tslint": "3.7.4",
"typescript": "1.8.10",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.0"
},
"devDependencies": {}
}