-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
54
55
56
57
58
59
{
"name": "@edufii/verifii",
"version": "0.0.1",
"description": "JavaScript validation engine.",
"main": "lib/verifii.umd.js",
"module": "lib/verifii.module.js",
"jsnext:main": "lib/verifii.module.js",
"typings": "lib/types/verifii.d.ts",
"scripts": {
"build": "npm run clean && tsc && rollup -c",
"clean": "rimraf lib",
"lint": "tslint --type-check --project tsconfig.json 'source/**/*.ts'",
"test": "jest",
"test:start": "npm run test -- --watch"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/edufii/verifii.git"
},
"keywords": [
"validate",
"validation"
],
"author": "Brenden Snyder <brendens@shotzoom.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/edufii/verifii/issues"
},
"homepage": "https://github.com/edufii/verifii#readme",
"devDependencies": {
"@types/jest": "^20.0.8",
"jest": "^20.0.4",
"release-script": "^1.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.49.2",
"ts-jest": "^20.0.14",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.ts"
]
}
}