-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
41 lines (41 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
{
"name": "smooch",
"version": "1.0.0",
"description": "Dress-up doll viewer",
"backend": "app/static/doll.js",
"targets": {
"default": {
"context": "browser",
"publicUrl": "/smooch",
"distDir": "docs/"
},
"backend": {
"source": "javascript/doll.js",
"context": "browser"
}
},
"source": "javascript/index.html",
"scripts": {
"start": "parcel",
"build": "parcel build",
"test:unit": "mocha \"./javascript/test/*.js\"",
"test:unit:watch": "mocha --reporter=nyan --watch --extension js --recursive \"./javascript/test/*.js\"",
"test": "mocha --reporter=nyan --exit \"./javascript/test/*.mjs\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"mocha": "^9.2.2",
"parcel": "^2.3.1",
"serve-static": "^1.15.0"
},
"alias": {
"process": false
}
}