-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "yuki-orienter",
"description": "A npm project",
"version": "0.1.0",
"author": "limichange <[email protected]>",
"main": "dist/yuki-orienter.js",
"module": "dist/yuki-orienter.esm.js",
"unpkg": "dist/yuki-orienter.js",
"scripts": {
"dev": "node examples/server.js",
"dev:dist": "rollup -wm -c build/rollup.config.js",
"build": "npm run build:main && npm run build:esm",
"build:main": "rollup -c build/rollup.config.js && uglifyjs dist/yuki-orienter.js -cm --comments -o dist/yuki-orienter.min.js",
"build:esm": "rollup -c build/rollup.config.js --environment ESM",
"lint": "eslint --ext .js src test/unit/specs"
},
"license": "MIT",
"pre-commit": [
"lint"
],
"keywords": [
"yuki"
],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.15.0",
"pre-commit": "^1.1.3",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2",
"uglify-js": "^2.7.5",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"standard": {
"globals": []
},
"repository": {
"type": "git",
"url": "[email protected]:yuki-torii/yuki-orienter.git.git"
},
"bugs": {
"url": "[email protected]:yuki-torii/yuki-orienter.git/issues"
},
"homepage": "[email protected]:yuki-torii/yuki-orienter.git#readme"
}