-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "react-prop-types-lab",
"version": "0.1.0",
"description": "Practice using PropTypes validations",
"engines": {
"node": "6.x",
"npm": "3.x"
},
"main": "index.js",
"scripts": {
"debug": "node-debug --hidden node_modules _mocha --watch",
"debug-ide": "./bin/debug-ide",
"copy-git-hooks": "./bin/copy-hooks",
"test": "mocha -R mocha-multi --require test/root.js --reporter-options nyan=-,json=.results.json",
"bundle": "browserify index.js -t babelify --exclude react/addons --exclude react/lib/ExecutionEnvironment --exclude react/lib/ReactContext -o bundle.js",
"postinstall": "npm run copy-git-hooks"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/learn-co-curriculum/react-prop-types-lab.git"
},
"keywords": [
"javascript",
"flatiron",
"learn"
],
"author": "The Flatiron School",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/react-prop-types-lab/issues"
},
"homepage": "https://github.com/learn-co-curriculum/react-prop-types-lab#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"enzyme": "^2.4.1",
"expect": "^1.20.2",
"jsdom": "^9.4.1",
"mocha": "^3.0.0",
"mocha-multi": "^0.9.0",
"node-inspector": "^0.12.8",
"react-addons-test-utils": "^15.3.0",
"sinon": "^1.17.5"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
}
}