-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "cerebral-module-ui-driver",
"version": "0.10.2",
"description": "A driver for connecting ui components to cerebral",
"main": "lib/index.js",
"scripts": {
"lint": "standard src/**/*.js test/**/*.js --verbose | snazzy",
"start": "parallelshell 'babel src --watch --out-dir lib' 'watch --wait=1 \"npm run lint --silent && mocha --compilers js:babel-core/register --recursive --reporter dot\" src test'",
"prebuild": "npm run lint",
"build": "rimraf lib && babel src --out-dir lib",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register --recursive",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garth/cerebral-module-ui-driver.git"
},
"keywords": [
"cerebral",
"cerebral-module",
"component",
"components",
"form",
"forms",
"validation"
],
"author": "Garth Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/garth/cerebral-module-ui-driver/issues"
},
"homepage": "https://github.com/garth/cerebral-module-ui-driver#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.6.0",
"cerebral": "^0.35.5",
"cerebral-provider-modules": "^0.1.2",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"moment": "^2.14.1",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.4",
"snazzy": "^4.0.0",
"standard": "^7.1.2",
"watch": "^0.19.1"
},
"peerDependencies": {
"cerebral": "^0.35.0 || ^1.0.0",
"cerebral-provider-modules": "^0.1.2",
"moment": "^2.14.1"
}
}