-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "preact-jsx-chai",
"version": "3.0.0",
"description": "Extend Chai with support for asserting JSX equality & contents.",
"main": "dist/index.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "babel src -s inline -d dist",
"test": "npm run -s lint && npm run -s test:unit",
"lint": "eslint src test",
"test:unit": "mocha --compilers js:babel/register test/**/*.js",
"prepublish": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"preact",
"jsx",
"chai",
"testing"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/developit/preact-jsx-chai.git"
},
"bugs": {
"url": "https://github.com/developit/preact-jsx-chai/issues"
},
"homepage": "https://github.com/developit/preact-jsx-chai",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^8.0.0",
"chai": "^4.0.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"mocha": "^3.0.0",
"preact": "10.0.0-beta.3"
},
"dependencies": {
"preact-render-to-string": "^5.0.4"
},
"greenkeeper": {
"ignore": [
"babel",
"babel-core"
]
}
}