-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1021 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1021 Bytes
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
{
"name": "teamcoder",
"version": "0.1.0",
"description": "Team code generator",
"engines": {
"node": ">=4.2.4"
},
"main": "dist/index.js",
"scripts": {
"build": "webpack --mode production",
"pretest": "standard | snazzy",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdalim/teamcoder.git"
},
"keywords": [
"generator",
"team",
"code"
],
"author": "Abdul Alim",
"license": "MIT",
"bugs": {
"url": "https://github.com/abdalim/teamcoder/issues"
},
"homepage": "https://github.com/abdalim/teamcoder#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"babel-loader": "^8.0.6",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"precommit": [
"test"
],
"standard": {
"globals": [
"describe",
"context",
"it"
]
}
}