-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3 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
{
"name": "dragon",
"version": "0.3.0",
"description": "Drag and drop SOLID",
"main": "dist/dragon.js",
"module": "dragon.es.js",
"scripts": {
"--- DEV-NOTE ---": "mkdir -p ./dragon-web/dist -> fixes: ERROR in [copy-webpack-plugin] unable to locate 'dist' at '/Users/lucky/Documents/projects/dragon/dragon-web/dist'",
"start": "mkdir -p ./dragon-web/dist && webpack -w",
"dev": "npm run start",
"build": "npm run test:prod && webpack && npm run build:rollup",
"test": "npm run test:prod && npm run test:e2e",
"test:dev": "cross-env NODE_ENV=DEV karma start",
"test:prod": "cross-env NODE_ENV=PROD karma start",
"test:e2e": "testcafe 'chrome --user-data-dir=/test/temp-chrome-profile' test/e2e/test.js",
"test:e2e:debug": "testcafe --inspect --debug-brk chrome test/e2e/test.js",
"dev:rollup": "rollup -c -w",
"build:rollup": "rollup -c",
"styles": "stylus dragon.styl --import node_modules/nib -o dist && cleancss dist/dragon.css -o dist/dragon.min.css",
"update:web": "cd dragon-web && git pull && npm i && npm run build",
"patch:packages": "node ./build/build_packages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/luckylooke/dragon.git"
},
"author": "Ctibor Laky <[email protected]> (github.com/luckylooke)",
"license": "MIT",
"bugs": {
"url": "https://github.com/luckylooke/dragon/issues"
},
"homepage": "https://github.com/luckylooke/dragon",
"dependencies": {
"@dragon/core": "^0.1.7",
"@dragon/dom-classes": "^0.1.4",
"@dragon/polyfills": "^0.1.4",
"@dragon/touchy": "^0.1.4",
"@dragon/utils": "^0.1.4",
"middle.js": "^3.2.0",
"vanilla-ui-router": "^1.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"clean-css-cli": "^4.1.9",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^4.2.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-eslint": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^2.0.4",
"nib": "^1.1.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-watch": "^3.2.2",
"stylus": "^0.54.5",
"testcafe": "^0.17.2",
"webpack": "^2.7.0"
}
}