-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "grapheme",
"version": "1.0.6",
"description": "JavaScript graphing library",
"main": "build/grapheme.js",
"type": "module",
"scripts": {
"test": "npx mocha --reporter spec",
"start": "http-server -a localhost -p 8000 --ext js",
"lint": "eslint . --fix",
"build": "rollup -c",
"gendoc": "jsdoc src -r -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anematode/grapheme.git"
},
"author": "Timothy Herchen <timothy.herchen@gmail.com> (https://moomath.com)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/anematode/grapheme/issues"
},
"homepage": "https://github.com/anematode/grapheme#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.13.16",
"@rollup/plugin-babel": "^5.2.1",
"chai": "^4.3.4",
"eslint": "^7.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.7",
"mocha": "^9.1.1",
"rollup": "^2.30.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"esm": "^3.2.25"
}
}