This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "nymph-query-editor",
"version": "2.0.0-beta.2",
"description": "A Nymph query editor built with Svelte.",
"main": "lib/umd/NymphQueryEditor.js",
"browser": "lib/es/NymphQueryEditor.js",
"directories": {
"lib": "lib/umd"
},
"scripts": {
"build": "npm run compile && npm run copy && npm run transpile",
"compile": "svelte compile src/ -o lib/es/",
"copy": "cp src/NymphQueryEditor.js lib/es/",
"transpile": "babel -d lib/umd/ lib/es/",
"prepare": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/*.html"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nymph-query-editor.git"
},
"keywords": [
"nymph"
],
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/nymph-query-editor/issues"
},
"homepage": "https://github.com/sciactive/nymph-query-editor#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"svelte": "^2.8.0",
"svelte-cli": "^3.0.0"
},
"dependencies": {
"locutus": "^2.0.9"
}
}