-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "must-jsx",
"version": "4.0.0",
"description": "Add JSX assertions to Must.js.",
"main": "dist/index.js",
"scripts": {
"test": "npm run compile && ./node_modules/.bin/_mocha --compilers js:babel-core/register",
"compile": "./node_modules/.bin/babel -d dist/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwinch/must-jsx.git"
},
"keywords": [
"must",
"jsx",
"assert",
"assertion",
"react",
"test"
],
"author": "Nathan Winch <nwinch@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nwinch/must-jsx/issues"
},
"homepage": "https://github.com/nwinch/must-jsx#readme",
"dependencies": {
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-element-to-jsx-string": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"mocha": "^2.4.5",
"must": "^0.13.1"
}
}