-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "template-colors",
"version": "0.0.9",
"description": "beautiful color usage within template literals",
"main": "dist/index.js",
"scripts": {
"test": "npm run build; ./node_modules/.bin/babel ./spec/ --out-dir ./.spec/; ./node_modules/.bin/jasmine-node ./.spec/*",
"build": "./node_modules/.bin/babel ./src/ --out-dir ./dist/;"
},
"repository": {
"type": "git",
"url": "git://github.com/icodeforlove/template-colors.git"
},
"author": {
"name": "Chad Scira",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"req-once": "0.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.11.6",
"eslint": "^3.4.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-jasmine": "^1.8.1",
"jasmine-node": "^1.14.5"
}
}