-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@simplr/react-forms-validation",
"version": "4.1.0",
"description": "Validation library for @simplr/react-forms.",
"repository": "SimplrJS/react-forms",
"homepage": "https://github.com/SimplrJS/react-forms",
"main": "index.js",
"types": "index.d.ts",
"author": "simplrjs <simplr@quatrodev.com> (https://github.com/simplrjs)",
"scripts": {
"test-watch": "jest --watchAll",
"test-coverage": "npm test -- --coverage",
"build": "gulp",
"watch": "webpack -w",
"release": "npm run build && npm run uglifyjs",
"test": "jest && npm run test-tsc && npm run test-tslint",
"test-tslint": "tslint --config ./tslint.json --project tsconfig.json && echo TsLint test successfully passed.",
"test-tsc": "tsc -p . --noEmit",
"uglifyjs": "echo \"Uglify is not implemented\" && exit 1",
"prepublishOnly": "npm run build",
"gulp-build": "tsc -p ./tools/tsconfig.gulp.json",
"gulp-watch": "npm run gulp-build -- -w"
},
"license": "AGPL-3.0",
"files": [
"**/*.md",
"*.js",
"**/*.d.ts",
"!*.config.js",
"!gulpfile.js",
"!node_modules/**"
],
"devDependencies": {
"@types/gulp": "^4.0.4",
"@types/webpack": "^2.2.16",
"@types/enzyme": "^2.8.0",
"@types/jest": "^20.0.1",
"@types/sinon": "^2.3.1",
"gulp": "github:gulpjs/gulp#4.0",
"@simplr/mvdir": "0.0.2",
"enzyme": "^2.8.2",
"jest": "^20.0.4",
"jest-enzyme": "^3.2.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"sinon": "^2.3.5",
"ts-jest": "^20.0.6",
"ts-loader": "^2.1.0",
"tslint": "^5.4.3",
"typescript": "^2.3.4",
"uglifyjs": "^2.4.11",
"webpack": "^3.0.0"
},
"dependencies": {
"@types/react": "^15.0.29",
"@types/react-dom": "^15.5.0",
"@types/validator": "^6.2.0",
"action-emitter": "^0.2.1",
"immutable": "^3.8.1",
"react": "^15.6.1",
"@simplr/react-forms": "^4.0.0",
"tslib": "^1.7.1",
"validator": "^7.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}