-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "treact",
"version": "0.1.0",
"description": "Very simple demonstration of Reactish VDOM implementation",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build:lib": "./node_modules/.bin/babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint ./src",
"start": "./node_modules/.bin/webpack-dev-server --config example/webpack.config.babel.js --port 3000 --hot --content-base ./example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomkis1/treact.git"
},
"keywords": [
"react",
"virtualdom",
"dom"
],
"author": "Tomas Weiss <tomasw@salsitasoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomkis1/treact/issues"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/tomkis1/treact#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": ">=3.1.11"
}
}