-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "note-it",
"version": "1.0.0",
"description": "Create small virtual papers to organize your thoughts..",
"main": "index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inofix/note-it-js.git"
},
"author": "Michael Lustenberger mic(at)inofix.ch",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/inofix/note-it-js/issues"
},
"homepage": "https://github.com/inofix/note-it-js#readme",
"scripts": {
"start": "parcel examples/sketchboard-empty.html && parcel examples/sketchboard-freedom.html",
"lint": "prettier --write './{lib,test}/**/*.js' && eslint --fix './{lib,test}/**/*.js'",
"test": "npm run lint && ava",
"build": "parcel build examples/sketchboard-empty.html && parcel build examples/sketchboard-freedom.html",
"serve-build": "serve ./dist/",
"clean": "rm -rf node_modules/ dist/ .cache/",
"clean-build": "rm -rf dist/ .cache/ && npm run build && npm run serve-build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"esm",
"./test/helpers/setup-browser-env.js"
]
},
"devDependencies": {
"ava": "1.0.0-rc.2",
"browser-env": "^3.3.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"esm": "^3.0.84",
"husky": "^1.1.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^1.2.4",
"prettier": "1.14.3",
"pretty-quick": "^1.8.0",
"serve": "^10.1.2"
},
"dependencies": {
"d3": "5.7.0"
}
}