-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "ascii-data-table",
"version": "2.1.1",
"description": "Render data in a width adjustable ascii table.",
"main": "lib/ascii-data-table",
"standard": {
"ignore": [
"/lib/"
]
},
"scripts": {
"build": "npm run lint && npm run build:node && npm run build:browser && npm run build:react && npm run build:angular-1x",
"build:node": "babel src --out-dir lib --ignore entry --source-maps",
"build:browser": "webpack -d --output-library AsciiTable",
"build:angular-1x": "webpack -d --config webpack.angular.config.js",
"build:react": "webpack -d --config webpack.react.config.js --output-library AsciiTableComponent",
"prepublish": "npm run build",
"lint": "standard",
"test:node": "mocha --compilers js:babel-core/register --reporter dot test/**/*-test.js",
"test:browser": "./node_modules/karma/bin/karma start karma.config.js --single-run --no-auto-watch",
"test": "npm run lint && npm run test:node && npm run test:browser",
"test:watch": "onchange 'src/**/*.js' 'test/**/*-test.js' -- npm run test"
},
"author": {
"name": "Oskar Hane",
"email": "[email protected]"
},
"homepage": "http://oskarhane.com",
"repository": {
"type": "git",
"url": "https://github.com/oskarhane/ascii-data-table.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"expect": "^1.14.0",
"karma": "^0.13.19",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"onchange": "^2.0.0",
"phantomjs": "^2.1.3",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.4",
"standard": "^6.0.4",
"webpack": "^1.12.13"
},
"keywords": [
"ascii table",
"ascii",
"text table",
"copy data",
"table data",
"draw ascii"
],
"dependencies": {
"core-js": "^2.4.1"
}
}