-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.65 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@takram/planck-core",
"version": "0.8.1",
"description": "A collection of classes and functions that are used anywhere in Planck framework, while is not precisely it’s core",
"repository": "takram-design-engineering/planck-core",
"main": "./dist/planck-core.js",
"module": "./dist/planck-core.module.js",
"browser": {
"./dist/planck-core.js": "./dist/planck-core.browser.js",
"./dist/planck-core.module.js": "./dist/planck-core.browser.module.js"
},
"author": "Shota Matsuda",
"license": "MIT",
"homepage": "http://takram.com/projects/planck",
"files": [
"package.json",
"README.md",
"dist/planck-core.js",
"dist/planck-core.module.js",
"dist/planck-core.browser.js",
"dist/planck-core.browser.module.js",
"dist/planck-core.min.js",
"src"
],
"scripts": {
"build": "npm-run-all --parallel build:node build:browser --sequential build:compress",
"build:node": "rollup -c",
"build:browser": "rollup -c rollup.config.browser.js",
"build:compress": "uglifyjs --compress --mangle --output ${npm_package_main%.*}.min.js ${npm_package_main%.*}.browser.js",
"lint": "npm-run-all lint:src lint:test",
"lint:src": "standard --verbose \"*.js\" \"src/**/*.js\"",
"lint:test": "standard --verbose --env mocha \"test/**/*.js\"",
"lint-fix": "npm-run-all lint-fix:src lint-fix:test",
"lint-fix:src": "standard --verbose --fix \"*.js\" \"src/**/*.js\"",
"lint-fix:test": "standard --verbose --fix --env mocha \"test/**/*.js\"",
"pretest": "npm-run-all lint-fix test:build",
"test": "npm-run-all test:node test:browser",
"test:build": "npm-run-all --parallel test:build:node test:build:browser",
"test:build:node": "cross-env NODE_ENV=test npm run build:node",
"test:build:browser": "cross-env NODE_ENV=test npm run build:browser",
"test:node": "nyc mocha --recursive test/src",
"test:browser": "karma start",
"pretest-ci": "npm-run-all lint test:build",
"test-ci": "npm-run-all test:node test-ci:browser",
"test-ci:browser": "karma start karma.conf-ci.js",
"prewatch": "npm run test:build",
"watch": "npm-run-all --parallel watch:src watch:test",
"watch:src": "nodemon --on-change-only --watch rollup.config.js --watch rollup.config.browser.js --watch src --exec \"npm-run-all lint-fix:src prewatch\"",
"watch:test": "npm-run-all --parallel watch-node:test watch-browser:test",
"prewatch-node": "npm run test:build:node",
"watch-node": "npm-run-all --parallel watch-node:src watch-node:test",
"watch-node:src": "nodemon --on-change-only --watch rollup.config.js --watch src --exec \"npm-run-all lint-fix:src prewatch-node\"",
"watch-node:test": "nodemon --watch ${npm_package_main} --watch test --exec \"npm run test:node\"",
"prewatch-browser": "npm run test:build:browser",
"watch-browser": "npm-run-all --parallel watch-browser:src watch-browser:test",
"watch-browser:src": "nodemon --on-change-only --watch rollup.config.browser.js --watch src --exec \"npm-run-all lint-fix:src prewatch-browser\"",
"watch-browser:test": "nodemon --watch ${npm_package_main%.*}.browser.js --watch test --exec \"npm run test:browser\""
},
"dependencies": {
"d3-dsv": "^1.0.8",
"hash.js": "^1.1.5",
"json-stable-stringify": "^1.0.1",
"path-browserify": "1.0.0",
"request": "^2.87.0",
"url-parse": "^1.4.3"
},
"devDependencies": {
"@shotamatsuda/rollup-plugin-nullify": "0.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.4",
"cross-env": "^5.2.0",
"detect-node": "^2.0.3",
"eslint": "^4.19.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"nock": "^9.4.4",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.2",
"rollup": "0.63.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.6",
"standard": "^11.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
}
}