-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.88 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.88 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
{
"name": "ktapi",
"version": "0.0.2",
"description": "A Javascript API to access kadcontrade",
"main": "target/ktapi-full.js",
"scripts": {
"prepare": "npm run rollup",
"test": "babel-tape-runner test/**/*Test.js",
"clean": "rm -rf target/ && rm -rf coverage/",
"rollup": "rollup -c --environment CUSTOM=\"$CUSTOM\",CONFIG=\"$CONFIG\" && if [ -z \"$CUSTOM$CONFIG\" ]; then FILENAME=ktapi-full; fi; FILENAME=\"$FILENAME\" npm run minimize",
"minimize": "uglifyjs -m -b beautify=false target/${FILENAME:-ktapi-custom}.js -o target/${FILENAME:-ktapi-custom}.min.js",
"interactive-rollup": "CUSTOM=TRUE npm run rollup",
"coverage": "babel-node -- ./node_modules/istanbul/lib/cli cover --include-all-sources true -x \"target/*\" -x \"src/index.js\" -x \"rollup.config.js\" -x \"interactiveBuild.js\" -x \"_*.js\" node_modules/tape/bin/tape ./test/**/*Test.js ${ISTANBUL_EXTRA}",
"checkstyle": "eslint \"src/**/*.js\" \"test/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/125m125/ktapi-js.git"
},
"keywords": [
"kadcon"
],
"author": "125m125",
"license": "MIT",
"bugs": {
"url": "https://github.com/125m125/ktapi-js/issues"
},
"homepage": "https://github.com/125m125/ktapi-js#readme",
"dependencies": {
"btoa": "1.2.1",
"d3-request": "1.0.6",
"jssha": "2.3.1",
"object-assign": "^4.1.1",
"pusher-js": "5.0.3",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-tape-runner": "3.0.0",
"eslint": "6.8.0",
"istanbul": "1.1.0-alpha.1",
"rollup": "1.26.5",
"rollup-plugin-spl": "0.0.6",
"sinon": "8.1.1",
"tape": "4.11.0",
"uglify-js": "3.7.2"
}
}