-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.36 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
{
"name": "placed-components",
"version": "0.0.1",
"description": "A library for handling component layouts with deterministic affects across versions. This separates the layout, controlled by the consumer of a component, from the appearance, controlled by the component developer.",
"license": "MIT License",
"author": "Marc Robichaud",
"contributors": [
{
"name": "Marc Robichaud",
"email": "[email protected]",
"url": "https://github.com/studiosciences"
}
],
"keywords": [
"react",
"css"
],
"repository": {
"type": "git",
"url": "https://github.com/studiosciences/placed-components"
},
"files": [
"src"
],
"scripts": {
"clean": "rimraf ./build/*",
"build": "webpack",
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"karma": "^3.1.4",
"karma-babel-preprocessor": "^8.0.0-beta.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"rimraf": "2.6.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "3.1.4"
},
"dependencies": {
"underscore": "^1.9.1"
}
}