-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "glance-dom",
"version": "0.11.7",
"description": "Glance DOM library",
"main": "javascript/lib/glance-dom.js",
"browser": "./javascript/lib/glance-dom-browser.js",
"scripts": {
"build": "npm run build:browser && npm run build:node",
"build:node": "rm -rf javascript/lib && babel javascript/src -d javascript/lib",
"build:browser": "rm -rf dist && webpack --config webpack-browser.js && webpack --config webpack-jquery.js",
"prepublish": "npm run build",
"docs:clean": "rm -rf docs/_book",
"docs:prepare": "cd docs && gitbook install",
"docs:watch": "npm run docs:prepare && cd docs && gitbook serve",
"docs:build": "npm run docs:prepare && cd docs && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:clean && npm run docs:build && npm run build:browser && cd docs/_book && cp -rf ../../dist . && git init && git fetch [email protected]:quasimatic/glance-dom.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push [email protected]:quasimatic/glance-dom.git gh-pages --force",
"test": "echo 'Please test using wallaby'",
"version": "node publish/version.js && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasimatic/glance-dom.git"
},
"keywords": [
"glance",
"automation",
"browser",
"testing",
"test"
],
"author": "Dan Gilkerson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quasimatic/glance-dom/issues"
},
"homepage": "https://github.com/quasimatic/glance-dom",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"gitbook-cli": "^2.3.2",
"inject-loader": "^3.0.1",
"jquery": "^3.2.1",
"mocha": "^4.0.1",
"pegjs": "^0.10.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sinon": "^4.1.3",
"wallaby-webpack": "3.9.3",
"webpack": "^3.10.0"
},
"babel": {
"ignore": [
"javascript/src/**/*-spec.js"
],
"presets": [
"es2015",
"stage-0",
"react"
]
},
"dependencies": {
"glance-parser": "0.0.5"
}
}