This repository was archived by the owner on Apr 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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": "@renegade/react-fields",
"version": "1.0.0",
"description": "React Field Management",
"main": "build/index.js",
"repository": "git@github.com:adamdickinson/renegade-fields.git",
"author": "Adam Dickinson <adam@renegadedigital.com.au>",
"license": "MIT",
"private": true,
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
],
"setupFiles": [
"./jestdoit.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"scripts": {
"build": "babel src --ignore integrations -d build",
"test": "jest --coverage",
"package": "babel src --ignore integrations -d build && rm -R ./src/ && rm jestdoit.js && sed -i '/\\/build\\//d' .gitignore"
},
"babel": {
"presets": [
"env",
"react"
]
},
"dependencies": {
"lodash": "^4.17.5",
"object-path-immutable": "^1.0.1",
"react": "^16.2.0",
"react-addons-update": "^15.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.0",
"jest-enzyme": "^4.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0"
}
}