-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 884 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
{
"name": "@matthieu-coder/nsi-image-editor",
"version": "1.0.0",
"description": "My final project for my year of NSI",
"main": "index.js",
"repository": "https://github.com/MatthieuCoder/NSI-Project.git",
"author": "Matthieu P.",
"license": "MIT",
"private": true,
"dependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"rollup": "^2.39.0",
"rollup-plugin-string": "^3.0.0",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"scripts": {
"start": "rollup -c",
"watch": "rollup -c --watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"rollup-plugin-uglify": "^6.0.4"
}
}