-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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": "react-typekit",
"version": "1.1.4",
"description": "React component that generates Typekit script",
"author": "Corey Larson <coreyleelarson@gmail.com> (http://github.com/coreyleelarson)",
"license": "MIT",
"main": "./lib/Typekit.js",
"repository": {
"type": "git",
"url": "https://github.com/coreyleelarson/react-typekit"
},
"keywords": [
"react",
"reactjs",
"adobe",
"typekit"
],
"scripts": {
"build": "npm run clean && npm run build:lib",
"build:lib": "babel ./src --out-dir ./lib --ignore '**/*.spec.js'",
"clean": "rimraf lib",
"lint": "eslint ./src/**",
"prepublish": "npm run clean && npm run build",
"test": "mocha --require test/setup.js ./src/**/*.spec.js --compilers js:babel-register"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.12.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^11.0.0",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"react": ">= 15.0.0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
}
}