-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "immutable-validation",
"version": "0.7.0",
"description": "Data validation using immutable data structures",
"main": "lib/index.js",
"scripts": {
"test": "karma start",
"test:ci": "karma start --no-single-run --browsers Chrome --auto-watch",
"build": "rimraf lib && babel ./src -d lib",
"dist": "webpack src/index.js dist/ImmutableValidation.min.js -p",
"dist:dev": "webpack src/index.js dist/ImmutableValidation.js -d",
"prepublish": "npm test && npm run build && npm run dist && npm run dist:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpoindexter/immutable-validation.git"
},
"keywords": [
"react",
"reactjs",
"javascript",
"immutable",
"immutablejs",
"form",
"validation"
],
"author": "Daniel Poindexter <dp.texas@gmail.com> (http://github.com/dpoindexter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dpoindexter/immutable-validation/issues"
},
"files": [
"LICENSE",
"Readme.md",
"lib/"
],
"homepage": "https://github.com/dpoindexter/immutable-validation#readme",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.6.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.2.0",
"coveralls": "^2.11.9",
"eslint": "^2.2.0",
"immutable-devtools": "0.0.6",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"phantomjs": "^1.9.18",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"dependencies": {
"immutable": "^3.7.6",
"ramda": "^0.19.1"
}
}