-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "gcodetest",
"description": "",
"version": "0.0.1",
"author": "Jorge Robles <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jorgerobles/gcodetest",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"dist",
"lib",
"src"
],
"npmName": "gcodetest",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/jorgerobles/gcodetest.git"
},
"bugs": {
"url": "https://github.com/jorgerobles/gcodetest/issues"
},
"keywords": [
"gcodetest"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint src test --fix",
"test": "mocha",
"test:karma": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"coverage": "babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha",
"coveralls": "istanbul-coveralls",
"check": "npm run lint && npm run coverage",
"build:lib": "babel src --out-dir lib --source-maps",
"build:umd": "webpack src/index.js dist/gcodetest.js --config webpack/webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/gcodetest.min.js --config webpack/webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"es5-shim": "^4.3.1",
"eslint": "^1.7.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^3.16.1",
"hh-mm-ss": "^1.1.0",
"isparta": "^4.0.0",
"istanbul-coveralls": "^1.0.3",
"karma": "^0.13.21",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"phantomjs": "^1.9.19",
"phantomjs-prebuilt": "^2.1.4",
"rimraf": "^2.3.4",
"vec3": "^0.1.3",
"webpack": "<=1.12.12"
},
"devEngines": {
"node": "4.x || 5.x",
"npm": "2.x || 3.x"
}
}