-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "stamen-attribution",
"version": "0.1.0",
"description": "Attribution for Stamen tools",
"source": "src/index.js",
"module": "dist/module.js",
"browser": "dist/main.js",
"scripts": {
"watch": "parcel watch && nodemon --watch assets --watch src --ext svg --exec 'node scripts/make-string-svg.js'",
"build": "node scripts/make-string-svg.js && parcel build",
"test": "jest --watchAll",
"jest-watch": "jest --watch",
"prepare": "husky install"
},
"author": "Stamen Design",
"license": "MIT",
"jest": {
"clearMocks": true,
"testEnvironment": "node",
"collectCoverage": false
},
"dependencies": {
"husky": "^8.0.3",
"nodemon": "^2.0.22"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@parcel/babel-preset-env": "^2.0.1",
"babel-jest": "^27.5.1",
"jest": "^27.3.1",
"parcel": "2.6.0"
}
}