-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "@mystroken/g",
"version": "0.0.16",
"description": "A garden of small JavaScript utilities.",
"main": "index.js",
"author": "Mystro Ken <mystroken@gmail.com>",
"license": "MIT",
"scripts": {
"test": "npx jest",
"dev": "node scripts/dev/index.js",
"build": "node scripts/prod/index.js"
},
"homepage": "https://github.com/mystroken/g#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mystroken/g.git"
},
"files": [
"dist/**.js",
"**.js"
],
"jest": {
"verbose": true,
"transform": {
".js": "jest-esm-transformer"
}
},
"keywords": [
"javascript",
"libray",
"creativecoding"
],
"devDependencies": {
"eslint-config-airbnb-es5": "^1.2.0",
"globby": "^10.0.1",
"jest": "^25.1.0",
"jest-esm-transformer": "^1.0.0",
"node-watch": "^0.6.3",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}