This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.35 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.35 KB
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
74
75
76
77
78
79
{
"name": "react-remove",
"version": "0.1.0-beta.1",
"description": "Remove elements from DOM on mount",
"homepage": "https://github.com/wikiwi/react-remove",
"repository": {
"type": "git",
"url": "git+https://github.com/wikiwi/react-remove.git"
},
"bugs": {
"url": "https://github.com/wikiwi/react-remove/issues"
},
"files": [
"dist",
"lib",
"cjs"
],
"jsnext:main": "./lib/index.js",
"main": "./cjs/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"all": "npm run lint && npm run test:coverage && npm run build",
"build": "gulp && webpack && cross-env BUILD_MINIFIED=true webpack",
"clean": "rm -r -f dist lib cjs coverage",
"ci:coveralls": "cat coverage/lcov.info | coveralls",
"release": "npm version -m 'react-remove release %s'",
"lint": "gulp lint",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --opts mocha.opts",
"test:coverage": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' istanbul cover node_modules/.bin/_mocha -- --opts mocha.opts",
"test:watch": "npm run test -- --watch"
},
"engines": {
"node": ">=4"
},
"keywords": [
"react",
"dom",
"remove"
],
"author": "Chi Vinh Le and contributors (https://github.com/wikiwi/react-remove/graphs/contributors)",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/enzyme": "^2.5.37",
"@types/jsdom": "^2.0.29",
"@types/mocha": "^2.2.32",
"@types/react": "^0.14.43",
"awesome-typescript-loader": "^3.0.0-beta.17",
"cash-rm": "^0.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-jsonlint": "^1.1.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.3",
"gulp-yaml-validate": "^1.0.2",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.8.0",
"merge2": "^1.0.2",
"mocha": "^3.1.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"ts-node": "~1.2.3",
"tslint": "^4.1.1",
"typescript": "^2.1.4",
"webpack": "^2.2.0-rc.1"
}
}