UNPKG

1.27 kBJSONView Raw
1{
2 "name": "terra-form",
3 "main": "lib/Form.js",
4 "version": "2.9.0",
5 "description": "Components for building forms",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/cerner/terra-core.git"
9 },
10 "keywords": [
11 "Cerner",
12 "Terra",
13 "terra-form",
14 "Form",
15 "UI"
16 ],
17 "author": "Cerner Corporation",
18 "license": "Apache-2.0",
19 "bugs": {
20 "url": "https://github.com/cerner/terra-core/issues"
21 },
22 "homepage": "https://github.com/cerner/terra-core#readme",
23 "peerDependencies": {
24 "react": "^16.2.0",
25 "react-dom": "^16.2.0",
26 "terra-base": "^3.7.0"
27 },
28 "dependencies": {
29 "classnames": "^2.2.5",
30 "prop-types": "^15.5.8",
31 "terra-base": "^3.9.0"
32 },
33 "scripts": {
34 "compile": "npm run compile:clean && npm run compile:build",
35 "compile:clean": "rimraf lib",
36 "compile:build": "babel src --out-dir lib --copy-files",
37 "lint": "npm run lint:js && npm run lint:scss",
38 "lint:js": "eslint --ext .js,.jsx . --ignore-path ../../.eslintignore",
39 "lint:scss": "stylelint src/**/*.scss",
40 "test": "npm run test:jest && npm run test:nightwatch",
41 "test:jest": "jest ./tests/jest/* --config ../../jestconfig.json",
42 "test:nightwatch": "nightwatch -c ../../nightwatch.conf.js"
43 }
44}