-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "@dropecho/noise",
"version": "0.5.2",
"description": "A library of noise generation tools.",
"author": "vantreeseba <[email protected]>",
"repository": "github:dropecho/dropecho.noise",
"main": "dist/js/dropecho.noise.js",
"files": [
"dist/js/dropecho.noise.js"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"install": "lix download",
"test": "lix run dropecho.testing",
"build": "npm run build:haxe && npm run build:example",
"build:haxe": "haxe build.hxml",
"build:example": "cp -r dist/js/esm/* docs/dropecho.noise",
"clean": "rm -rf dist && rm -rf artifacts"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"semantic-release": "^17.1.1",
"semantic-release-haxelib": "^0.4.0"
}
}