This repository was archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"description": "A motion controller emulator",
"license": "Apache 2.0",
"main": "dist/index.js",
"name": "motion-controller-emulator",
"version": "0.1.4",
"scripts": {
"build": "babel src --presets babel-preset-stage-0 --out-dir dist",
"prepare": "npm run build",
"test": "npm run build && mocha dist/**/*.spec.js",
"test-dev": "node node_modules/.bin/nodemon node_modules/.bin/mocha dist/**/*.spec.js"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2",
"eslint-plugin-react": "^6.8.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"webpack": "^3.6.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.4.6",
"deep-equal": "^1.0.1",
"fs-promise": "^1.0.0",
"gcode-json-converter": "1.2.1",
"line-by-line": "^0.1.5",
"lodash": "^4.17.2"
}
}