-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1.3 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
{
"name": "react-koans",
"version": "0.0.1",
"description": "This is a simple set of exercises to introduce some key concepts in React. The concepts your are going to learn are: Props, State, React Component, React Instance, React Element",
"main": "index.js",
"scripts": {
"test-koans-1": "mocha './koans-1/**/*.spec.js' --compilers js:babel-core/register --require ./test/jsdom-setup.js",
"test-koans-2": "mocha './koans-2/**/*.spec.js' --compilers js:babel-core/register --require ./test/jsdom-setup.js",
"test-koans-3": "mocha './koans-3/**/*.spec.js' --compilers js:babel-core/register --require ./test/jsdom-setup.js",
"test": "mocha './**/*.spec.js' --compilers js:babel-core/register",
"test:watch": "npm test -- --watch"
},
"keywords": [
"react, koans, react instance, react component, react element, state, props"
],
"author": "Techdency",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"jsdom": "^9.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.0.2",
"sinon": "^1.17.4",
"webpack": "^1.13.0"
},
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2"
}
}