-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
49 lines (49 loc) · 1.19 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": "crel",
"description": "A small, simple, and fast DOM creation utility",
"author": "Kory Nunn <knunn187@gmail.com>",
"tags": [
"DOM"
],
"version": "4.2.1",
"main": "crel.js",
"module": "crel.es.js",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-buble": "^0.20.0",
"browserify": "^16.2.3",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"tape": "^4.9.2",
"tape-run": "^6.0.1",
"terser": "^3.14.1"
},
"files": [
"LICENSE.txt",
"README.md",
"crel.js",
"crel.min.js",
"crel.es.js",
"package.json"
],
"scripts": {
"test": "browserify ./test/index.js | tape-run",
"testBuild": "browserify ./test/index.js > ./test/index.browser.js",
"build": "terser crel.js -o crel.min.js --warn --ecma 6 -c evaluate=false,pure_getters -m && rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/KoryNunn/crel.git"
},
"bugs": {
"url": "http://github.com/KoryNunn/crel/issues"
},
"license": "MIT",
"contributors": [],
"homepage": "https://github.com/KoryNunn/crel#readme",
"directories": {
"test": "test"
},
"keywords": []
}