-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "formalist-validation",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/icelab/formalist-validation",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/icelab/formalist-validation.git"
},
"keywords": [],
"authors": [
"Max Wheeler <[email protected]> (https://github.com/makenosound)",
"Tim Riley <[email protected]> (https://github.com/timriley)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/formalist-validation/issues"
},
"scripts": {
"build": "babel --presets babel-preset-es2015 src --out-dir lib",
"postbuild": "npm run lint",
"test": "babel-node --presets babel-preset-es2015 test | faucet",
"lint": "eslint 'src/*.js' 'src/**/*.js' 'test/*.js' 'test/**/*.js'",
"posttest": "npm run lint"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-standard": "^1.3.2",
"faucet": "0.0.1",
"tape": "^4.5.1"
}
}