-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 820 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 820 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
31
32
33
34
35
36
37
{
"name": "calc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"ava": {
"require": [
"esm"
]
},
"scripts": {
"start": "serve public",
"build": "rollup -c -w",
"test": "ava --verbose tests/*.test.js --verbose",
"test:headless": "ava --verbose headless-test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myungjaeyu/calc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/myungjaeyu/calc/issues"
},
"homepage": "https://github.com/myungjaeyu/calc#readme",
"devDependencies": {
"ava": "^2.2.0",
"esm": "^3.2.25",
"puppeteer": "^1.18.1",
"jsdom": "^15.1.1",
"rollup": "^1.16.7",
"rollup-plugin-scss": "^1.0.1",
"serve": "^11.1.0"
}
}