-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 784 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 784 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
{
"name": "codeworks-tp-prime-tester",
"version": "1.0.1",
"description": "A Codeworks toy problem to train students",
"main": "index.js",
"scripts": {
"precommit": "gulp lint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "codeworksbcn/tp-prime-tester"
},
"author": "Codeworks",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"chai": "^4.1.2",
"cz-changelog": "^1.0.1",
"del": "^3.0.0",
"eslint": "^5.4.0",
"eslint-plugin-json": "^1.2.1",
"gulp": "^3.9.1",
"gulp-eslint": "^5.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-replace": "^1.0.0",
"husky": "0.14.3",
"mocha": "^5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-changelog"
}
}
}