-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 836 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 836 Bytes
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
{
"name": "graphpaper-ui",
"version": "0.0.0",
"exports": {
".": {
"import": "./dist/graphpaper.esm.js",
"require": "./dist/graphpaper.cjs.js"
}
},
"repository": "https://github.com/aautar/graphpaper.git",
"author": "Avishkar Autar <av@semisignal.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^6.0.4",
"babel-preset-minify": "^0.5.1",
"jasmine": "^5.6.0",
"jsdom": "^11.12.0",
"process-nextick-args": "^1.0.7",
"rollup": "^2.1.0"
},
"type":"module",
"scripts": {
"perf": "node ./node_modules/jasmine/bin/jasmine.js --config=spec/support/jasmine.perf.json",
"test": "node ./node_modules/jasmine/bin/jasmine.js",
"build": "rollup -c"
}
}