-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 985 Bytes
/
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
{
"name": "uldu",
"version": "1.0.13",
"description": "Ultra lightweight utility to create DOM nodes.",
"repository": "https://github.com/chriskr/uldu",
"main": "index.js",
"author": "chriskr",
"license": "Apache-2.0",
"keywords": [
"dom",
"utility",
"create element",
"createElement",
"html",
"template",
"templating",
"minimal",
"lightweight"
],
"dependencies": {},
"scripts": {
"watch": "cross-env NODE_ENV=development webpack -w --mode development --display-error-details",
"build": "cross-env NODE_ENV=production webpack --mode production",
"eslint": "./node_modules/.bin/eslint --fix src/"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}