This repository has been archived by the owner on Sep 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "teaspoon",
"version": "6.6.0",
"description": "jQuery-esque Api for React elements and instances, supports complex css selectors",
"main": "lib/index.js",
"scripts": {
"test": "npm run react:15 && npm run test-current",
"test-current": "jest",
"tdd": "jest --watch",
"toc": "doctoc README.md --github",
"react:clean": "rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils",
"react:15": "npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15",
"build": "babel src --out-dir lib && npm run toc && cpy ./README.md ./lib",
"release": "release"
},
"repository": {
"type": "git",
"url": "https://github.com/jquense/teaspoon"
},
"keywords": [
"react",
"test",
"query"
],
"author": "jquense",
"license": "MIT",
"bugs": {
"url": "https://github.com/jquense/teaspoon/issues"
},
"homepage": "https://github.com/jquense/teaspoon",
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js",
"testRegex": "tests\\/.+\\.js$"
},
"peerDependencies": {
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^5.8.25",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-preset-jason": "^2.0.1",
"chai": "^3.5.0",
"cpy": "^3.4.1",
"dirty-chai": "^1.2.2",
"doctoc": "^0.15.0",
"eslint": "^3.19.0",
"eslint-config-jason": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"mocha": "^2.3.3",
"mt-changelog": "^0.6.2",
"release-script": "^1.0.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.1",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"bill": "^3.2.6",
"dom-helpers": "^2.4.0",
"invariant": "^2.2.0",
"lodash": "^3.10.1",
"promise": "^7.1.1",
"react-test-renderer": "^15.5.4 || ^16.0.0",
"warning": "^2.1.0"
},
"release-script": {
"altPkgRootFolder": "lib"
}
}