-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
52
53
{
"name": "lakmus",
"version": "0.3.0",
"description": "Fluent validation.",
"main": "index.js",
"scripts": {
"clean": "gulp clean",
"tsc": "tsc -p .",
"pretest": "npm run tsc",
"test": "jasmine",
"build": "gulp build",
"predeploy": "npm run test",
"deploy": "npm version minor --force && npm publish",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmitchenko/lakmus.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"Fluent",
"Validation",
"Lakmus"
],
"files": [
"index.d.ts",
"index.js",
"src/**/*.js",
"src/**/*.d.ts"
],
"author": "Boris Mitchenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmitchenko/lakmus/issues"
},
"devDependencies": {
"@types/jasmine": "^2.2.32",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.2",
"gulp-typescript": "^3.2.3",
"gulp-uglify": "^3.0.0",
"jasmine": "^2.4.1",
"jasmine-spec-reporter": "^4.2.1",
"merge2": "^1.0.2",
"pump": "^2.0.0",
"typescript": "^2.6.2"
},
"homepage": "https://github.com/bmitchenko/lakmus#readme"
}