-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.77 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": "spected",
"version": "0.7.1",
"description": "Validation Library",
"main": "lib/index.js",
"author": "25th-floor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/25th-floor/spected.git"
},
"scripts": {
"clean": "rimraf lib dist",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "babel src -d lib",
"build:dist": "NODE_ENV=production rollup -c",
"test": "npm run flow && npm run lint && npm run test:lib",
"test:lib": "mocha --compilers js:babel-core/register --recursive --colors",
"flow": "flow check",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"Validation",
"Deeply Nested Validation Rules",
"Forms"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-ramda": "^1.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"flow-bin": "^0.47.0",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"ramda": "^0.28.0"
}
}