-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
60
61
{
"name": "react-fancy-field",
"version": "1.0.8",
"description": "A modern styled input field with animating effects built for React.",
"main": "./dist/FancyField.js",
"repository": {
"type": "git",
"url": "https://github.com/the-unsullied/react-fancy-field"
},
"scripts": {
"build": "rm -rf dist && mkdir -p dist && babel src/FancyField.js --out-file dist/FancyField.js && node ./scripts/build-dist && cp src/main.scss dist/FancyField.scss",
"test": "npm run build; ./node_modules/karma/bin/karma start",
"test:debug": "npm run build; ./node_modules/karma/bin/karma start --debug"
},
"keywords": [
"React",
"component",
"field",
"input",
"modern",
"animate",
"animation"
],
"author": "Points",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-react-jsx": "^6.7.4",
"babel-polyfill": "^6.9.1",
"babel-preset-airbnb": "^2.3.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"chai": "^4.1.2",
"classnames": "^2.2.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"karma": "^1.0.0",
"karma-browserify": "^5.0.5",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.0.1",
"mocha": "^4.0.1",
"node-sass": "^4.5.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.8.0",
"watchify": "^3.7.0"
},
"dependencies": {
"immutable": "^3.8.1",
"prop-types": "^15.6.0"
}
}